@forge/cli-shared 8.23.0-next.5 → 8.23.0-next.7
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
|
};
|
|
@@ -48836,6 +49084,14 @@ export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
48836
49084
|
contextAri: Scalars['ID']['input'];
|
|
48837
49085
|
productAri: Scalars['ID']['input'];
|
|
48838
49086
|
};
|
|
49087
|
+
export declare type GraphIntegrationCreateSkillInput = {
|
|
49088
|
+
contextAri: Scalars['ID']['input'];
|
|
49089
|
+
description: Scalars['String']['input'];
|
|
49090
|
+
displayName: Scalars['String']['input'];
|
|
49091
|
+
instructions: Scalars['String']['input'];
|
|
49092
|
+
name: Scalars['String']['input'];
|
|
49093
|
+
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
49094
|
+
};
|
|
48839
49095
|
export declare type GraphIntegrationDataConnector = {
|
|
48840
49096
|
__typename?: 'GraphIntegrationDataConnector';
|
|
48841
49097
|
connectorKey: Scalars['String']['output'];
|
|
@@ -48859,6 +49115,10 @@ export declare type GraphIntegrationDeleteDataConnectorConnectionInput = {
|
|
|
48859
49115
|
connectorProviderKey: Scalars['String']['input'];
|
|
48860
49116
|
contextAri: Scalars['ID']['input'];
|
|
48861
49117
|
};
|
|
49118
|
+
export declare type GraphIntegrationDeleteSkillInput = {
|
|
49119
|
+
contextAri: Scalars['ID']['input'];
|
|
49120
|
+
skillAri: Scalars['ID']['input'];
|
|
49121
|
+
};
|
|
48862
49122
|
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
48863
49123
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
48864
49124
|
displayName: Scalars['String']['output'];
|
|
@@ -49248,6 +49508,11 @@ export declare type GraphIntegrationSkillMetadata = {
|
|
|
49248
49508
|
tools: Array<GraphIntegrationSkillTool>;
|
|
49249
49509
|
version: Scalars['String']['output'];
|
|
49250
49510
|
};
|
|
49511
|
+
export declare type GraphIntegrationSkillMutationPayload = Payload & {
|
|
49512
|
+
__typename?: 'GraphIntegrationSkillMutationPayload';
|
|
49513
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49514
|
+
success: Scalars['Boolean']['output'];
|
|
49515
|
+
};
|
|
49251
49516
|
export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDimensionItem & {
|
|
49252
49517
|
__typename?: 'GraphIntegrationSkillProductItem';
|
|
49253
49518
|
displayName: Scalars['String']['output'];
|
|
@@ -49263,6 +49528,11 @@ export declare type GraphIntegrationSkillTool = {
|
|
|
49263
49528
|
source: GraphIntegrationSkillToolSource;
|
|
49264
49529
|
type: GraphIntegrationSkillToolType;
|
|
49265
49530
|
};
|
|
49531
|
+
export declare type GraphIntegrationSkillToolInput = {
|
|
49532
|
+
id: Scalars['String']['input'];
|
|
49533
|
+
source: GraphIntegrationSkillToolSource;
|
|
49534
|
+
type: GraphIntegrationSkillToolType;
|
|
49535
|
+
};
|
|
49266
49536
|
export declare enum GraphIntegrationSkillToolSource {
|
|
49267
49537
|
IntegrationsService = "INTEGRATIONS_SERVICE"
|
|
49268
49538
|
}
|
|
@@ -49364,6 +49634,15 @@ export declare type GraphIntegrationUpdateDataConnectorConnectionInput = {
|
|
|
49364
49634
|
connectorProviderPayload: Scalars['JSON']['input'];
|
|
49365
49635
|
contextAri: Scalars['ID']['input'];
|
|
49366
49636
|
};
|
|
49637
|
+
export declare type GraphIntegrationUpdateSkillInput = {
|
|
49638
|
+
contextAri: Scalars['ID']['input'];
|
|
49639
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
49640
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
49641
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
49642
|
+
skillAri: Scalars['ID']['input'];
|
|
49643
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
49644
|
+
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
49645
|
+
};
|
|
49367
49646
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
49368
49647
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
49369
49648
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -106232,6 +106511,7 @@ export declare type GravityViewConfig = {
|
|
|
106232
106511
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
106233
106512
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
106234
106513
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
106514
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
106235
106515
|
sort?: Maybe<Array<GravityViewSort>>;
|
|
106236
106516
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
106237
106517
|
tableColumnSizes?: Maybe<Array<GravityViewTableColumnSize>>;
|
|
@@ -106251,6 +106531,7 @@ export declare type GravityViewConfigInput = {
|
|
|
106251
106531
|
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106252
106532
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106253
106533
|
layoutType?: InputMaybe<GravityViewLayoutType>;
|
|
106534
|
+
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106254
106535
|
sort?: InputMaybe<Array<GravityViewSortInput>>;
|
|
106255
106536
|
sortMode?: InputMaybe<GravityViewSortMode>;
|
|
106256
106537
|
tableColumnSizes?: InputMaybe<Array<GravityViewTableColumnSizeInput>>;
|
|
@@ -113513,9 +113794,11 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
113513
113794
|
id: Scalars['ID']['output'];
|
|
113514
113795
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
113515
113796
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
113797
|
+
maximumIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113516
113798
|
name?: Maybe<Scalars['String']['output']>;
|
|
113517
113799
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
113518
113800
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
113801
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113519
113802
|
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
113520
113803
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
113521
113804
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
@@ -113532,6 +113815,9 @@ export declare type JiraBoardViewStatusColumnSimpleTransitionsArgs = {
|
|
|
113532
113815
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113533
113816
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113534
113817
|
};
|
|
113818
|
+
export declare type JiraBoardViewStatusColumnTotalIssueCountArgs = {
|
|
113819
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
113820
|
+
};
|
|
113535
113821
|
export declare type JiraBoardViewStatusColumnWorkflowsArgs = {
|
|
113536
113822
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113537
113823
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -117674,6 +117960,7 @@ export declare type JiraFieldScheme = Node & {
|
|
|
117674
117960
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
117675
117961
|
name?: Maybe<Scalars['String']['output']>;
|
|
117676
117962
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
117963
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
117677
117964
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
117678
117965
|
};
|
|
117679
117966
|
export declare type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
@@ -117691,6 +117978,11 @@ export declare type JiraFieldSchemeAvailableProjectsArgs = {
|
|
|
117691
117978
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
117692
117979
|
input?: InputMaybe<JiraAvailableProjectSearchInput>;
|
|
117693
117980
|
};
|
|
117981
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesArgs = {
|
|
117982
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
117983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
117984
|
+
input?: InputMaybe<JiraFieldSchemeRequiredOnIssueTypesInput>;
|
|
117985
|
+
};
|
|
117694
117986
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
117695
117987
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
117696
117988
|
field?: Maybe<JiraField>;
|
|
@@ -117737,6 +118029,9 @@ export declare type JiraFieldSchemePayload = Payload & {
|
|
|
117737
118029
|
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
117738
118030
|
success: Scalars['Boolean']['output'];
|
|
117739
118031
|
};
|
|
118032
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesInput = {
|
|
118033
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
118034
|
+
};
|
|
117740
118035
|
export declare type JiraFieldSchemeSourceInput = {
|
|
117741
118036
|
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
117742
118037
|
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -121676,6 +121971,7 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
121676
121971
|
NinProject = "NIN_PROJECT",
|
|
121677
121972
|
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
121678
121973
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
|
|
121974
|
+
TimelineBoard = "TIMELINE_BOARD",
|
|
121679
121975
|
TimelineProject = "TIMELINE_PROJECT"
|
|
121680
121976
|
}
|
|
121681
121977
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -127132,6 +127428,7 @@ export declare type JiraProject = Node & {
|
|
|
127132
127428
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
127133
127429
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
127134
127430
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
127431
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
127135
127432
|
roles?: Maybe<JiraRoleConnection>;
|
|
127136
127433
|
schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
127137
127434
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
@@ -127308,6 +127605,11 @@ export declare type JiraProjectRequestTypesArgs = {
|
|
|
127308
127605
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127309
127606
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127310
127607
|
};
|
|
127608
|
+
export declare type JiraProjectRequiredOnIssueTypesArgs = {
|
|
127609
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127610
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127611
|
+
input?: InputMaybe<JiraProjectRequiredOnIssueTypesInput>;
|
|
127612
|
+
};
|
|
127311
127613
|
export declare type JiraProjectRolesArgs = {
|
|
127312
127614
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127313
127615
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127956,6 +128258,9 @@ export declare enum JiraProjectRecommendationType {
|
|
|
127956
128258
|
InviterActivity = "INVITER_ACTIVITY",
|
|
127957
128259
|
TenantActivity = "TENANT_ACTIVITY"
|
|
127958
128260
|
}
|
|
128261
|
+
export declare type JiraProjectRequiredOnIssueTypesInput = {
|
|
128262
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
128263
|
+
};
|
|
127959
128264
|
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
127960
128265
|
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
127961
128266
|
executedBy?: Maybe<User>;
|
|
@@ -129989,7 +130294,6 @@ export declare type JiraRedactionSortInput = {
|
|
|
129989
130294
|
export declare type JiraRelatedLinkSuggestionConnection = {
|
|
129990
130295
|
__typename?: 'JiraRelatedLinkSuggestionConnection';
|
|
129991
130296
|
edges?: Maybe<Array<Maybe<JiraRelatedLinkSuggestionEdge>>>;
|
|
129992
|
-
errors?: Maybe<Array<QueryError>>;
|
|
129993
130297
|
pageInfo: PageInfo;
|
|
129994
130298
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129995
130299
|
};
|
|
@@ -130505,7 +130809,7 @@ export declare type JiraRemoveIssueFromSprintInput = {
|
|
|
130505
130809
|
boardId: Scalars['ID']['input'];
|
|
130506
130810
|
issueId: Scalars['ID']['input'];
|
|
130507
130811
|
};
|
|
130508
|
-
export declare type JiraRemoveIssueFromSprintPayload = {
|
|
130812
|
+
export declare type JiraRemoveIssueFromSprintPayload = Payload & {
|
|
130509
130813
|
__typename?: 'JiraRemoveIssueFromSprintPayload';
|
|
130510
130814
|
errors?: Maybe<Array<MutationError>>;
|
|
130511
130815
|
jiraView?: Maybe<JiraViewResult>;
|
|
@@ -132809,6 +133113,18 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
132809
133113
|
success: Scalars['Boolean']['output'];
|
|
132810
133114
|
view?: Maybe<JiraBoardView>;
|
|
132811
133115
|
};
|
|
133116
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
|
|
133117
|
+
columnId: Scalars['ID']['input'];
|
|
133118
|
+
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
133119
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
133120
|
+
};
|
|
133121
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = {
|
|
133122
|
+
__typename?: 'JiraSetBoardViewStatusColumnIssueCountLimitPayload';
|
|
133123
|
+
boardView?: Maybe<JiraBoardView>;
|
|
133124
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
133125
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133126
|
+
success: Scalars['Boolean']['output'];
|
|
133127
|
+
};
|
|
132812
133128
|
export declare type JiraSetBoardViewStatusColumnMappingCreateStatusInput = {
|
|
132813
133129
|
name: Scalars['String']['input'];
|
|
132814
133130
|
reference: Scalars['ID']['input'];
|
|
@@ -133357,7 +133673,6 @@ export declare type JiraSimilarIssues = {
|
|
|
133357
133673
|
export declare type JiraSimilarWorkItemSuggestionConnection = {
|
|
133358
133674
|
__typename?: 'JiraSimilarWorkItemSuggestionConnection';
|
|
133359
133675
|
edges?: Maybe<Array<Maybe<JiraSimilarWorkItemSuggestionEdge>>>;
|
|
133360
|
-
errors?: Maybe<Array<QueryError>>;
|
|
133361
133676
|
pageInfo: PageInfo;
|
|
133362
133677
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133363
133678
|
};
|
|
@@ -136796,7 +137111,6 @@ export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
|
136796
137111
|
export declare type JiraWorkBreakdownSuggestionConnection = {
|
|
136797
137112
|
__typename?: 'JiraWorkBreakdownSuggestionConnection';
|
|
136798
137113
|
edges?: Maybe<Array<Maybe<JiraWorkBreakdownSuggestionEdge>>>;
|
|
136799
|
-
errors?: Maybe<Array<QueryError>>;
|
|
136800
137114
|
pageInfo: PageInfo;
|
|
136801
137115
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
136802
137116
|
};
|
|
@@ -138160,10 +138474,11 @@ export declare type JsmChannelsEstablishConnectionInput = {
|
|
|
138160
138474
|
connectionType: JsmChannelsConnectionType;
|
|
138161
138475
|
displayName: Scalars['String']['input'];
|
|
138162
138476
|
exchangeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138163
|
-
hostUrl
|
|
138477
|
+
hostUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138164
138478
|
profileRetrieverUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138165
138479
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
138166
138480
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
138481
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
138167
138482
|
};
|
|
138168
138483
|
export declare type JsmChannelsEstablishConnectionPayload = Payload & {
|
|
138169
138484
|
__typename?: 'JsmChannelsEstablishConnectionPayload';
|
|
@@ -139878,6 +140193,7 @@ export declare type KitsuneInsight = Node & {
|
|
|
139878
140193
|
externalId?: Maybe<Scalars['ID']['output']>;
|
|
139879
140194
|
id: Scalars['ID']['output'];
|
|
139880
140195
|
jiraIssue?: Maybe<JiraIssue>;
|
|
140196
|
+
nbSnippets: Scalars['Int']['output'];
|
|
139881
140197
|
snippets: KitsuneSnippetConnection;
|
|
139882
140198
|
summary?: Maybe<KitsuneSummary>;
|
|
139883
140199
|
title: Scalars['String']['output'];
|
|
@@ -141843,6 +142159,111 @@ export declare type LayerScreenLookAndFeel = {
|
|
|
141843
142159
|
height?: Maybe<Scalars['String']['output']>;
|
|
141844
142160
|
width?: Maybe<Scalars['String']['output']>;
|
|
141845
142161
|
};
|
|
142162
|
+
export declare type LearningCertSort = {
|
|
142163
|
+
sortDirection?: InputMaybe<LearningSortOrder>;
|
|
142164
|
+
sortField?: InputMaybe<LearningCertSortField>;
|
|
142165
|
+
};
|
|
142166
|
+
export declare enum LearningCertSortField {
|
|
142167
|
+
ActiveDate = "ACTIVE_DATE",
|
|
142168
|
+
ExpireDate = "EXPIRE_DATE",
|
|
142169
|
+
Id = "ID",
|
|
142170
|
+
ImageUrl = "IMAGE_URL",
|
|
142171
|
+
Name = "NAME",
|
|
142172
|
+
NameAbbr = "NAME_ABBR",
|
|
142173
|
+
PublicUrl = "PUBLIC_URL",
|
|
142174
|
+
Status = "STATUS",
|
|
142175
|
+
Type = "TYPE"
|
|
142176
|
+
}
|
|
142177
|
+
export declare enum LearningCertStatus {
|
|
142178
|
+
Active = "ACTIVE",
|
|
142179
|
+
Expired = "EXPIRED"
|
|
142180
|
+
}
|
|
142181
|
+
export declare enum LearningCertType {
|
|
142182
|
+
Badge = "BADGE",
|
|
142183
|
+
Certification = "CERTIFICATION",
|
|
142184
|
+
Standing = "STANDING"
|
|
142185
|
+
}
|
|
142186
|
+
export declare type LearningCertmetricsCertificate = {
|
|
142187
|
+
__typename?: 'LearningCertmetricsCertificate';
|
|
142188
|
+
activeDate?: Maybe<Scalars['String']['output']>;
|
|
142189
|
+
expireDate?: Maybe<Scalars['String']['output']>;
|
|
142190
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
142191
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
142192
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
142193
|
+
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
142194
|
+
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
142195
|
+
status?: Maybe<LearningCertStatus>;
|
|
142196
|
+
type?: Maybe<LearningCertType>;
|
|
142197
|
+
};
|
|
142198
|
+
export declare type LearningCertmetricsCertificateConnection = {
|
|
142199
|
+
__typename?: 'LearningCertmetricsCertificateConnection';
|
|
142200
|
+
edges?: Maybe<Array<LearningCertmetricsCertificateEdge>>;
|
|
142201
|
+
pageInfo?: Maybe<LearningPageInfo>;
|
|
142202
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142203
|
+
};
|
|
142204
|
+
export declare type LearningCertmetricsCertificateEdge = {
|
|
142205
|
+
__typename?: 'LearningCertmetricsCertificateEdge';
|
|
142206
|
+
cursor: Scalars['String']['output'];
|
|
142207
|
+
node?: Maybe<LearningCertmetricsCertificate>;
|
|
142208
|
+
};
|
|
142209
|
+
export declare type LearningCertmetricsCertificateResult = LearningCertmetricsCertificateConnection | LearningQueryError;
|
|
142210
|
+
export declare type LearningConnectionQueryErrorExtension = LearningQueryErrorExtension & {
|
|
142211
|
+
__typename?: 'LearningConnectionQueryErrorExtension';
|
|
142212
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
142213
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
142214
|
+
};
|
|
142215
|
+
export declare type LearningLearner = {
|
|
142216
|
+
__typename?: 'LearningLearner';
|
|
142217
|
+
atlassianId: Scalars['String']['output'];
|
|
142218
|
+
certmetricsCertificates?: Maybe<LearningCertmetricsCertificateResult>;
|
|
142219
|
+
id: Scalars['ID']['output'];
|
|
142220
|
+
};
|
|
142221
|
+
export declare type LearningLearnerCertmetricsCertificatesArgs = {
|
|
142222
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142223
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
142224
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142225
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
142226
|
+
sorting?: InputMaybe<LearningCertSort>;
|
|
142227
|
+
status?: InputMaybe<LearningCertStatus>;
|
|
142228
|
+
type?: InputMaybe<Array<InputMaybe<LearningCertType>>>;
|
|
142229
|
+
};
|
|
142230
|
+
export declare type LearningPageInfo = {
|
|
142231
|
+
__typename?: 'LearningPageInfo';
|
|
142232
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
142233
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
142234
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
142235
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
142236
|
+
};
|
|
142237
|
+
export declare type LearningQuery = {
|
|
142238
|
+
__typename?: 'LearningQuery';
|
|
142239
|
+
learnerByAtlassianId?: Maybe<LearningLearner>;
|
|
142240
|
+
learnersByAtlassianIds?: Maybe<Array<Maybe<LearningLearner>>>;
|
|
142241
|
+
learnersByIds?: Maybe<Array<Maybe<LearningLearner>>>;
|
|
142242
|
+
};
|
|
142243
|
+
export declare type LearningQueryLearnerByAtlassianIdArgs = {
|
|
142244
|
+
atlassianId: Scalars['String']['input'];
|
|
142245
|
+
};
|
|
142246
|
+
export declare type LearningQueryLearnersByAtlassianIdsArgs = {
|
|
142247
|
+
atlassianIds: Array<Scalars['String']['input']>;
|
|
142248
|
+
};
|
|
142249
|
+
export declare type LearningQueryLearnersByIdsArgs = {
|
|
142250
|
+
ids: Array<Scalars['ID']['input']>;
|
|
142251
|
+
};
|
|
142252
|
+
export declare type LearningQueryError = {
|
|
142253
|
+
__typename?: 'LearningQueryError';
|
|
142254
|
+
extensions?: Maybe<Array<LearningQueryErrorExtension>>;
|
|
142255
|
+
id: Scalars['ID']['output'];
|
|
142256
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
142257
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
142258
|
+
};
|
|
142259
|
+
export declare type LearningQueryErrorExtension = {
|
|
142260
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
142261
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
142262
|
+
};
|
|
142263
|
+
export declare enum LearningSortOrder {
|
|
142264
|
+
Asc = "ASC",
|
|
142265
|
+
Desc = "DESC"
|
|
142266
|
+
}
|
|
141846
142267
|
export declare type License = {
|
|
141847
142268
|
__typename?: 'License';
|
|
141848
142269
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
@@ -142605,6 +143026,10 @@ export declare type LpQueryError = Node & {
|
|
|
142605
143026
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
142606
143027
|
message?: Maybe<Scalars['String']['output']>;
|
|
142607
143028
|
};
|
|
143029
|
+
export declare type M360ServiceHelloWorldPayload = {
|
|
143030
|
+
__typename?: 'M360ServiceHelloWorldPayload';
|
|
143031
|
+
greeting?: Maybe<Scalars['String']['output']>;
|
|
143032
|
+
};
|
|
142608
143033
|
export declare type Macro = {
|
|
142609
143034
|
__typename?: 'Macro';
|
|
142610
143035
|
adf: Scalars['String']['output'];
|
|
@@ -145511,6 +145936,24 @@ export declare type MarketplaceStoreEntitlementDetails = {
|
|
|
145511
145936
|
ccpUsers?: Maybe<Scalars['Int']['output']>;
|
|
145512
145937
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
145513
145938
|
};
|
|
145939
|
+
export declare type MarketplaceStoreExploreObjectsSection = MarketplaceStoreLayoutSection & {
|
|
145940
|
+
__typename?: 'MarketplaceStoreExploreObjectsSection';
|
|
145941
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
145942
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
145943
|
+
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
145944
|
+
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
145945
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
145946
|
+
tabs?: Maybe<Array<MarketplaceStoreExploreObjectsTab>>;
|
|
145947
|
+
title: Scalars['String']['output'];
|
|
145948
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
145949
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
145950
|
+
};
|
|
145951
|
+
export declare type MarketplaceStoreExploreObjectsTab = {
|
|
145952
|
+
__typename?: 'MarketplaceStoreExploreObjectsTab';
|
|
145953
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
145954
|
+
name: Scalars['String']['output'];
|
|
145955
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
145956
|
+
};
|
|
145514
145957
|
export declare enum MarketplaceStoreFormStatus {
|
|
145515
145958
|
Approved = "APPROVED",
|
|
145516
145959
|
Rejected = "REJECTED",
|
|
@@ -145756,7 +146199,6 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
145756
146199
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
145757
146200
|
Spotlight = "SPOTLIGHT",
|
|
145758
146201
|
Statistics = "STATISTICS",
|
|
145759
|
-
TopUseCases = "TOP_USE_CASES",
|
|
145760
146202
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
145761
146203
|
}
|
|
145762
146204
|
export declare enum MarketplaceStoreLayoutSectionType {
|
|
@@ -145764,8 +146206,8 @@ export declare enum MarketplaceStoreLayoutSectionType {
|
|
|
145764
146206
|
Capability = "CAPABILITY",
|
|
145765
146207
|
Dark = "DARK",
|
|
145766
146208
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
145767
|
-
|
|
145768
|
-
|
|
146209
|
+
ExploreObjects = "EXPLORE_OBJECTS",
|
|
146210
|
+
List = "LIST"
|
|
145769
146211
|
}
|
|
145770
146212
|
export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
145771
146213
|
Bounded = "BOUNDED",
|
|
@@ -146574,18 +147016,6 @@ export declare type MarketplaceStoreThirdPartyInformation = {
|
|
|
146574
147016
|
isEndUserDataShared?: Maybe<Scalars['Boolean']['output']>;
|
|
146575
147017
|
thirdPartyDetails?: Maybe<Array<Maybe<MarketplaceStoreThirdPartyDetails>>>;
|
|
146576
147018
|
};
|
|
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
147019
|
export declare type MarketplaceStoreTrustSignalDataRules = {
|
|
146590
147020
|
__typename?: 'MarketplaceStoreTrustSignalDataRules';
|
|
146591
147021
|
name: Scalars['String']['output'];
|
|
@@ -146633,17 +147063,6 @@ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
|
146633
147063
|
status: Scalars['String']['output'];
|
|
146634
147064
|
version: Scalars['Int']['output'];
|
|
146635
147065
|
};
|
|
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
147066
|
export declare type MarketplaceStoreUserPreferences = {
|
|
146648
147067
|
__typename?: 'MarketplaceStoreUserPreferences';
|
|
146649
147068
|
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -151787,7 +152206,7 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
|
|
|
151787
152206
|
cloudId: Scalars['ID']['input'];
|
|
151788
152207
|
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
151789
152208
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
151790
|
-
providerKey
|
|
152209
|
+
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
151791
152210
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
151792
152211
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
151793
152212
|
};
|
|
@@ -154196,6 +154615,16 @@ export declare type MercuryViewSettings = {
|
|
|
154196
154615
|
export declare type MercuryViewSettingsInput = {
|
|
154197
154616
|
values: Array<MercuryViewSettingEntryInput>;
|
|
154198
154617
|
};
|
|
154618
|
+
export declare type MercuryViewSort = {
|
|
154619
|
+
field: MercuryViewSortField;
|
|
154620
|
+
order: SortOrder;
|
|
154621
|
+
};
|
|
154622
|
+
export declare enum MercuryViewSortField {
|
|
154623
|
+
Name = "NAME",
|
|
154624
|
+
Rank = "RANK",
|
|
154625
|
+
StarredDate = "STARRED_DATE",
|
|
154626
|
+
UpdatedDate = "UPDATED_DATE"
|
|
154627
|
+
}
|
|
154199
154628
|
export declare enum MercuryViewType {
|
|
154200
154629
|
HierarchyView = "HIERARCHY_VIEW",
|
|
154201
154630
|
RankingView = "RANKING_VIEW"
|
|
@@ -154591,8 +155020,11 @@ export declare type Mutation = {
|
|
|
154591
155020
|
agentWorkspace_createDraftedRoutingTable?: Maybe<AgentWorkspaceCreateDraftedRoutingTablePayload>;
|
|
154592
155021
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
154593
155022
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
155023
|
+
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
154594
155024
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
154595
155025
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
155026
|
+
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
155027
|
+
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
154596
155028
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
154597
155029
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
154598
155030
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
@@ -154611,6 +155043,7 @@ export declare type Mutation = {
|
|
|
154611
155043
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154612
155044
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
154613
155045
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
155046
|
+
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
154614
155047
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
154615
155048
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
154616
155049
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -154686,6 +155119,7 @@ export declare type Mutation = {
|
|
|
154686
155119
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
154687
155120
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
154688
155121
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
155122
|
+
assetsVertical_archiveInsight?: Maybe<AssetsVerticalArchiveInsightPayload>;
|
|
154689
155123
|
assetsVertical_createAssetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingsPayload>;
|
|
154690
155124
|
assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
154691
155125
|
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
@@ -155043,6 +155477,7 @@ export declare type Mutation = {
|
|
|
155043
155477
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
155044
155478
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
155045
155479
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
155480
|
+
csm_updateCustomerName?: Maybe<CustomerServiceUpdateCustomerNamePayload>;
|
|
155046
155481
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
155047
155482
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
155048
155483
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
@@ -155206,11 +155641,14 @@ export declare type Mutation = {
|
|
|
155206
155641
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
155207
155642
|
goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
|
|
155208
155643
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
155644
|
+
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
155209
155645
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
155210
155646
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
155211
155647
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
155212
155648
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
155649
|
+
graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
|
|
155213
155650
|
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
155651
|
+
graphIntegration_deleteSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
155214
155652
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
155215
155653
|
graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
|
|
155216
155654
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
@@ -155219,6 +155657,7 @@ export declare type Mutation = {
|
|
|
155219
155657
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
155220
155658
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
155221
155659
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
155660
|
+
graphIntegration_updateSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
155222
155661
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
155223
155662
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
155224
155663
|
gravity_addReaction?: Maybe<GravityAddReactionPayload>;
|
|
@@ -155332,6 +155771,7 @@ export declare type Mutation = {
|
|
|
155332
155771
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
155333
155772
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
155334
155773
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
155774
|
+
jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
|
|
155335
155775
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
155336
155776
|
jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
|
|
155337
155777
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
@@ -155547,6 +155987,7 @@ export declare type Mutation = {
|
|
|
155547
155987
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
155548
155988
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
155549
155989
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
155990
|
+
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
155550
155991
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
155551
155992
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
155552
155993
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -156179,12 +156620,21 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
156179
156620
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
156180
156621
|
input: AgentWorkspaceSkillCreateInput;
|
|
156181
156622
|
};
|
|
156623
|
+
export declare type MutationAgentWorkspace_DeleteCoverShiftArgs = {
|
|
156624
|
+
input: AgentWorkspaceDeleteCoverShiftInput;
|
|
156625
|
+
};
|
|
156182
156626
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
156183
156627
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
156184
156628
|
};
|
|
156185
156629
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
156186
156630
|
input: AgentWorkspaceDeleteShiftInput;
|
|
156187
156631
|
};
|
|
156632
|
+
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
156633
|
+
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
156634
|
+
};
|
|
156635
|
+
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
156636
|
+
input: AgentWorkspaceEditCoverShiftInput;
|
|
156637
|
+
};
|
|
156188
156638
|
export declare type MutationAgentWorkspace_EditShiftArgs = {
|
|
156189
156639
|
input: AgentWorkspaceEditShiftInput;
|
|
156190
156640
|
};
|
|
@@ -156241,6 +156691,9 @@ export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs =
|
|
|
156241
156691
|
export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
156242
156692
|
input: AiCoreApiCsvExportInput;
|
|
156243
156693
|
};
|
|
156694
|
+
export declare type MutationAiCoreApi_InitiateRsaReportArgs = {
|
|
156695
|
+
input: AiCoreApiRsaReportInput;
|
|
156696
|
+
};
|
|
156244
156697
|
export declare type MutationAiManagedObject_CreateAiManagedObjectArgs = {
|
|
156245
156698
|
cloudId: Scalars['ID']['input'];
|
|
156246
156699
|
input: AiManagedObjectCreateInput;
|
|
@@ -156595,6 +157048,9 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
156595
157048
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
156596
157049
|
workspaceId: Scalars['ID']['input'];
|
|
156597
157050
|
};
|
|
157051
|
+
export declare type MutationAssetsVertical_ArchiveInsightArgs = {
|
|
157052
|
+
input: AssetsVerticalArchiveInsightInput;
|
|
157053
|
+
};
|
|
156598
157054
|
export declare type MutationAssetsVertical_CreateAssetTypesTrackingsArgs = {
|
|
156599
157055
|
input: AssetsVerticalCreateAssetTypesTrackingsInput;
|
|
156600
157056
|
};
|
|
@@ -157869,6 +158325,10 @@ export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
|
157869
158325
|
input: CsmAiWidgetUpdateInput;
|
|
157870
158326
|
widgetId: Scalars['ID']['input'];
|
|
157871
158327
|
};
|
|
158328
|
+
export declare type MutationCsm_UpdateCustomerNameArgs = {
|
|
158329
|
+
cloudId: Scalars['ID']['input'];
|
|
158330
|
+
input: CustomerServiceUpdateCustomerNameInput;
|
|
158331
|
+
};
|
|
157872
158332
|
export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
157873
158333
|
cloudId: Scalars['ID']['input'];
|
|
157874
158334
|
input: CustomerServiceLiveChatSettingsInput;
|
|
@@ -158382,6 +158842,9 @@ export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
|
|
|
158382
158842
|
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
158383
158843
|
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
158384
158844
|
};
|
|
158845
|
+
export declare type MutationGoals_UpdateAppPermissionPoliciesArgs = {
|
|
158846
|
+
input: TownsquareUpdateGoalsAppPermissionPoliciesInput;
|
|
158847
|
+
};
|
|
158385
158848
|
export declare type MutationGrantContentAccessArgs = {
|
|
158386
158849
|
grantContentAccessInput: GrantContentAccessInput;
|
|
158387
158850
|
};
|
|
@@ -158394,9 +158857,15 @@ export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
|
|
|
158394
158857
|
export declare type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
158395
158858
|
input: GraphIntegrationCreateDataConnectorConnectionInput;
|
|
158396
158859
|
};
|
|
158860
|
+
export declare type MutationGraphIntegration_CreateSkillArgs = {
|
|
158861
|
+
input: GraphIntegrationCreateSkillInput;
|
|
158862
|
+
};
|
|
158397
158863
|
export declare type MutationGraphIntegration_DeleteDataConnectorConnectionArgs = {
|
|
158398
158864
|
input: GraphIntegrationDeleteDataConnectorConnectionInput;
|
|
158399
158865
|
};
|
|
158866
|
+
export declare type MutationGraphIntegration_DeleteSkillArgs = {
|
|
158867
|
+
input: GraphIntegrationDeleteSkillInput;
|
|
158868
|
+
};
|
|
158400
158869
|
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
158401
158870
|
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
158402
158871
|
};
|
|
@@ -158421,6 +158890,9 @@ export declare type MutationGraphIntegration_SetTwgPlatformCapabilityGlobalAdmin
|
|
|
158421
158890
|
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
158422
158891
|
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
158423
158892
|
};
|
|
158893
|
+
export declare type MutationGraphIntegration_UpdateSkillArgs = {
|
|
158894
|
+
input: GraphIntegrationUpdateSkillInput;
|
|
158895
|
+
};
|
|
158424
158896
|
export declare type MutationGravity_AddReactionArgs = {
|
|
158425
158897
|
cloudId: Scalars['ID']['input'];
|
|
158426
158898
|
input: GravityAddReactionInput;
|
|
@@ -158768,6 +159240,9 @@ export declare type MutationJira_SetBoardViewFilterArgs = {
|
|
|
158768
159240
|
export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
158769
159241
|
input: JiraSetBoardViewGroupByInput;
|
|
158770
159242
|
};
|
|
159243
|
+
export declare type MutationJira_SetBoardViewStatusColumnIssueCountLimitArgs = {
|
|
159244
|
+
input: JiraSetBoardViewStatusColumnIssueCountLimitInput;
|
|
159245
|
+
};
|
|
158771
159246
|
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
158772
159247
|
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
158773
159248
|
};
|
|
@@ -159473,6 +159948,9 @@ export declare type MutationProjects_ShareProjectArgs = {
|
|
|
159473
159948
|
export declare type MutationProjects_ShareUpdateArgs = {
|
|
159474
159949
|
input: TownsquareProjectsShareUpdateInput;
|
|
159475
159950
|
};
|
|
159951
|
+
export declare type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
159952
|
+
input: TownsquareUpdateProjectsAppPermissionPoliciesInput;
|
|
159953
|
+
};
|
|
159476
159954
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
159477
159955
|
action: PublicLinkAdminAction;
|
|
159478
159956
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -163551,10 +164029,12 @@ export declare type Query = {
|
|
|
163551
164029
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
163552
164030
|
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
163553
164031
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
164032
|
+
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
163554
164033
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
163555
164034
|
agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
|
|
163556
164035
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
163557
164036
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
164037
|
+
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
163558
164038
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
163559
164039
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
163560
164040
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
@@ -163579,6 +164059,7 @@ export declare type Query = {
|
|
|
163579
164059
|
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
163580
164060
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
163581
164061
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
164062
|
+
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
163582
164063
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
163583
164064
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
163584
164065
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -163917,6 +164398,7 @@ export declare type Query = {
|
|
|
163917
164398
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
163918
164399
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
163919
164400
|
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
164401
|
+
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
163920
164402
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
163921
164403
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
163922
164404
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -164204,6 +164686,7 @@ export declare type Query = {
|
|
|
164204
164686
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
164205
164687
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
164206
164688
|
goals_allWatchedGoalUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
164689
|
+
goals_appPermissionPolicies?: Maybe<TownsquareGoalsAppPermissionPolicyConnection>;
|
|
164207
164690
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
164208
164691
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
164209
164692
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
@@ -164409,6 +164892,8 @@ export declare type Query = {
|
|
|
164409
164892
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
164410
164893
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
164411
164894
|
latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
|
|
164895
|
+
learning?: Maybe<LearningQuery>;
|
|
164896
|
+
learning_healthCheck?: Maybe<Scalars['String']['output']>;
|
|
164412
164897
|
license?: Maybe<License>;
|
|
164413
164898
|
linksIncomingToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
164414
164899
|
linksIncomingToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -164445,6 +164930,7 @@ export declare type Query = {
|
|
|
164445
164930
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
164446
164931
|
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
164447
164932
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
164933
|
+
m360Service_helloWorld?: Maybe<M360ServiceHelloWorldPayload>;
|
|
164448
164934
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
164449
164935
|
macros?: Maybe<MacroConnection>;
|
|
164450
164936
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -164540,6 +165026,7 @@ export declare type Query = {
|
|
|
164540
165026
|
productListings: Array<ProductListingResult>;
|
|
164541
165027
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
164542
165028
|
projects_allWatchedProjectUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
165029
|
+
projects_appPermissionPolicies?: Maybe<TownsquareProjectsAppPermissionPolicyConnection>;
|
|
164543
165030
|
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
164544
165031
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
164545
165032
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
@@ -164680,6 +165167,7 @@ export declare type Query = {
|
|
|
164680
165167
|
stakeholderComms_getComponentsWithUptimeByPageIdV2?: Maybe<StakeholderCommsNestedComponentWithUptimeConnection>;
|
|
164681
165168
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
164682
165169
|
stakeholderComms_getDraftComponentsByPageIdV2?: Maybe<StakeholderCommsNestedComponentConnection>;
|
|
165170
|
+
stakeholderComms_getDraftEmailForIncident?: Maybe<StakeholderCommsDraftEmailResponse>;
|
|
164683
165171
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
164684
165172
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
164685
165173
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
@@ -165511,6 +165999,9 @@ export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
|
|
|
165511
165999
|
projectKey: Scalars['String']['input'];
|
|
165512
166000
|
serviceFieldId: Scalars['String']['input'];
|
|
165513
166001
|
};
|
|
166002
|
+
export declare type QueryAgentWorkspace_CoverShiftEditBoundsArgs = {
|
|
166003
|
+
input: AgentWorkspaceCoverShiftEditBoundsInput;
|
|
166004
|
+
};
|
|
165514
166005
|
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
165515
166006
|
cloudId: Scalars['ID']['input'];
|
|
165516
166007
|
projectKey: Scalars['String']['input'];
|
|
@@ -165525,6 +166016,9 @@ export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
|
165525
166016
|
cloudId: Scalars['ID']['input'];
|
|
165526
166017
|
projectId: Scalars['ID']['input'];
|
|
165527
166018
|
};
|
|
166019
|
+
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
166020
|
+
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
166021
|
+
};
|
|
165528
166022
|
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
165529
166023
|
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
165530
166024
|
};
|
|
@@ -165654,6 +166148,10 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
165654
166148
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
165655
166149
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
165656
166150
|
};
|
|
166151
|
+
export declare type QueryAiCoreApi_FetchRsaReportArgs = {
|
|
166152
|
+
jobId: Scalars['ID']['input'];
|
|
166153
|
+
queryTypes?: InputMaybe<Array<AiCoreApiRsaQueryType>>;
|
|
166154
|
+
};
|
|
165657
166155
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
165658
166156
|
projectAri: Scalars['ID']['input'];
|
|
165659
166157
|
};
|
|
@@ -167183,6 +167681,9 @@ export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
167183
167681
|
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
167184
167682
|
cloudId: Scalars['ID']['input'];
|
|
167185
167683
|
};
|
|
167684
|
+
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskProgressArgs = {
|
|
167685
|
+
cloudId: Scalars['ID']['input'];
|
|
167686
|
+
};
|
|
167186
167687
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
167187
167688
|
cloudId: Scalars['String']['input'];
|
|
167188
167689
|
contentId: Scalars['ID']['input'];
|
|
@@ -168422,6 +168923,7 @@ export declare type QueryFocus_ViewsSearchArgs = {
|
|
|
168422
168923
|
cloudId: Scalars['ID']['input'];
|
|
168423
168924
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168424
168925
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
168926
|
+
sort?: InputMaybe<Array<MercuryViewSort>>;
|
|
168425
168927
|
};
|
|
168426
168928
|
export declare type QueryForYouFeedArgs = {
|
|
168427
168929
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168507,6 +169009,11 @@ export declare type QueryGoals_AllWatchedGoalUpdatesCountArgs = {
|
|
|
168507
169009
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
168508
169010
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
168509
169011
|
};
|
|
169012
|
+
export declare type QueryGoals_AppPermissionPoliciesArgs = {
|
|
169013
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
169014
|
+
containerId: Scalars['ID']['input'];
|
|
169015
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169016
|
+
};
|
|
168510
169017
|
export declare type QueryGoals_AppSettingsArgs = {
|
|
168511
169018
|
containerId: Scalars['ID']['input'];
|
|
168512
169019
|
};
|
|
@@ -169418,6 +169925,9 @@ export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
|
169418
169925
|
export declare type QueryLoom_WorkspacesArgs = {
|
|
169419
169926
|
ids: Array<Scalars['ID']['input']>;
|
|
169420
169927
|
};
|
|
169928
|
+
export declare type QueryM360Service_HelloWorldArgs = {
|
|
169929
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
169930
|
+
};
|
|
169421
169931
|
export declare type QueryMacroBodyRendererArgs = {
|
|
169422
169932
|
adf: Scalars['String']['input'];
|
|
169423
169933
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -169711,6 +170221,11 @@ export declare type QueryProjects_AllWatchedProjectUpdatesCountArgs = {
|
|
|
169711
170221
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
169712
170222
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
169713
170223
|
};
|
|
170224
|
+
export declare type QueryProjects_AppPermissionPoliciesArgs = {
|
|
170225
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170226
|
+
containerId: Scalars['ID']['input'];
|
|
170227
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170228
|
+
};
|
|
169714
170229
|
export declare type QueryProjects_AppSettingsArgs = {
|
|
169715
170230
|
containerId: Scalars['ID']['input'];
|
|
169716
170231
|
};
|
|
@@ -170289,6 +170804,11 @@ export declare type QueryStakeholderComms_GetDraftComponentsByPageIdV2Args = {
|
|
|
170289
170804
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170290
170805
|
nestedComponentConnectionInput: StakeholderCommsNestedComponentConnectionInput;
|
|
170291
170806
|
};
|
|
170807
|
+
export declare type QueryStakeholderComms_GetDraftEmailForIncidentArgs = {
|
|
170808
|
+
audienceType: StakeholderCommsDraftEmailAudienceType;
|
|
170809
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170810
|
+
incidentId: Scalars['String']['input'];
|
|
170811
|
+
};
|
|
170292
170812
|
export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
170293
170813
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170294
170814
|
pageId: Scalars['String']['input'];
|
|
@@ -196746,6 +197266,16 @@ export declare type StakeholderCommsDnsRecordType = {
|
|
|
196746
197266
|
name: Scalars['String']['output'];
|
|
196747
197267
|
records: Array<StakeholderCommsDnsRecord>;
|
|
196748
197268
|
};
|
|
197269
|
+
export declare enum StakeholderCommsDraftEmailAudienceType {
|
|
197270
|
+
External = "EXTERNAL",
|
|
197271
|
+
Internal = "INTERNAL"
|
|
197272
|
+
}
|
|
197273
|
+
export declare type StakeholderCommsDraftEmailResponse = {
|
|
197274
|
+
__typename?: 'StakeholderCommsDraftEmailResponse';
|
|
197275
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
197276
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
197277
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
197278
|
+
};
|
|
196749
197279
|
export declare enum StakeholderCommsErrorType {
|
|
196750
197280
|
SystemError = "SYSTEM_ERROR",
|
|
196751
197281
|
ValidationError = "VALIDATION_ERROR"
|
|
@@ -198105,6 +198635,7 @@ export declare type Subscription = {
|
|
|
198105
198635
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
198106
198636
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
198107
198637
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
198638
|
+
convoai_onSessionUpdateByScopeId?: Maybe<ConvoAiAgentSessionUpdatePayload>;
|
|
198108
198639
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
198109
198640
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
198110
198641
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -198167,6 +198698,10 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
|
198167
198698
|
cloudId: Scalars['ID']['input'];
|
|
198168
198699
|
projectIds: Array<Scalars['String']['input']>;
|
|
198169
198700
|
};
|
|
198701
|
+
export declare type SubscriptionConvoai_OnSessionUpdateByScopeIdArgs = {
|
|
198702
|
+
cloudId: Scalars['ID']['input'];
|
|
198703
|
+
scopeId: Scalars['String']['input'];
|
|
198704
|
+
};
|
|
198170
198705
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
198171
198706
|
cloudId: Scalars['ID']['input'];
|
|
198172
198707
|
jobId: Scalars['ID']['input'];
|
|
@@ -200859,6 +201394,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
200859
201394
|
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
200860
201395
|
progress?: Maybe<TownsquareGoalProgress>;
|
|
200861
201396
|
projects?: Maybe<TownsquareProjectConnection>;
|
|
201397
|
+
restrictedBy?: Maybe<TownsquareGoal>;
|
|
200862
201398
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
200863
201399
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
200864
201400
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
@@ -201139,8 +201675,12 @@ export declare type TownsquareGoalManageAccessInput = {
|
|
|
201139
201675
|
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
201140
201676
|
added?: InputMaybe<TownsquareGoalManageAccessAddedInput>;
|
|
201141
201677
|
goalId: Scalars['ID']['input'];
|
|
201678
|
+
modified?: InputMaybe<TownsquareGoalManageAccessModifiedInput>;
|
|
201142
201679
|
revoked?: InputMaybe<TownsquareGoalManageAccessRevokedInput>;
|
|
201143
201680
|
};
|
|
201681
|
+
export declare type TownsquareGoalManageAccessModifiedInput = {
|
|
201682
|
+
roles: Array<TownsquareGoalRoleModifiedInput>;
|
|
201683
|
+
};
|
|
201144
201684
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
201145
201685
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
201146
201686
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
@@ -201214,6 +201754,10 @@ export declare type TownsquareGoalRevokeAccessPayload = {
|
|
|
201214
201754
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
201215
201755
|
success: Scalars['Boolean']['output'];
|
|
201216
201756
|
};
|
|
201757
|
+
export declare type TownsquareGoalRoleModifiedInput = {
|
|
201758
|
+
principalId: Scalars['ID']['input'];
|
|
201759
|
+
role: TownsquareGoalAccessRoleInput;
|
|
201760
|
+
};
|
|
201217
201761
|
export declare enum TownsquareGoalScoringMode {
|
|
201218
201762
|
Okr = "OKR",
|
|
201219
201763
|
Simple = "SIMPLE"
|
|
@@ -201425,6 +201969,49 @@ export declare type TownsquareGoalsAddViewPayload = {
|
|
|
201425
201969
|
success: Scalars['Boolean']['output'];
|
|
201426
201970
|
views?: Maybe<TownsquareGoalUserViews>;
|
|
201427
201971
|
};
|
|
201972
|
+
export declare enum TownsquareGoalsAppPermission {
|
|
201973
|
+
Archive = "ARCHIVE",
|
|
201974
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
201975
|
+
Create = "CREATE",
|
|
201976
|
+
Manage = "MANAGE",
|
|
201977
|
+
Update = "UPDATE",
|
|
201978
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
201979
|
+
}
|
|
201980
|
+
export declare type TownsquareGoalsAppPermissionEntry = {
|
|
201981
|
+
__typename?: 'TownsquareGoalsAppPermissionEntry';
|
|
201982
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
201983
|
+
permission?: Maybe<TownsquareGoalsAppPermission>;
|
|
201984
|
+
};
|
|
201985
|
+
export declare type TownsquareGoalsAppPermissionInput = {
|
|
201986
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
201987
|
+
permission: TownsquareGoalsAppPermission;
|
|
201988
|
+
};
|
|
201989
|
+
export declare type TownsquareGoalsAppPermissionPolicy = Node & {
|
|
201990
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicy';
|
|
201991
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionEntry>>>;
|
|
201992
|
+
group?: Maybe<IdentityGroup>;
|
|
201993
|
+
id: Scalars['ID']['output'];
|
|
201994
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
201995
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
201996
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
201997
|
+
resourceId: Scalars['ID']['output'];
|
|
201998
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
201999
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
202000
|
+
};
|
|
202001
|
+
export declare type TownsquareGoalsAppPermissionPolicyConnection = {
|
|
202002
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyConnection';
|
|
202003
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicyEdge>>>;
|
|
202004
|
+
pageInfo: PageInfo;
|
|
202005
|
+
};
|
|
202006
|
+
export declare type TownsquareGoalsAppPermissionPolicyEdge = {
|
|
202007
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyEdge';
|
|
202008
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
202009
|
+
node?: Maybe<TownsquareGoalsAppPermissionPolicy>;
|
|
202010
|
+
};
|
|
202011
|
+
export declare type TownsquareGoalsAppPermissionPolicyInput = {
|
|
202012
|
+
appPermissions: Array<TownsquareGoalsAppPermissionInput>;
|
|
202013
|
+
id: Scalars['ID']['input'];
|
|
202014
|
+
};
|
|
201428
202015
|
export declare type TownsquareGoalsAppSettings = {
|
|
201429
202016
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
201430
202017
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -202366,6 +202953,10 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
202366
202953
|
token?: Maybe<Scalars['String']['output']>;
|
|
202367
202954
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
202368
202955
|
};
|
|
202956
|
+
export declare type TownsquareProductRole = {
|
|
202957
|
+
__typename?: 'TownsquareProductRole';
|
|
202958
|
+
role: Scalars['ID']['output'];
|
|
202959
|
+
};
|
|
202369
202960
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
202370
202961
|
__typename?: 'TownsquareProject';
|
|
202371
202962
|
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
@@ -202415,6 +203006,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
202415
203006
|
msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
|
|
202416
203007
|
name: Scalars['String']['output'];
|
|
202417
203008
|
owner?: Maybe<User>;
|
|
203009
|
+
pendingAutoAttachMilestones?: Maybe<Array<TownsquareMilestone>>;
|
|
202418
203010
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
202419
203011
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
202420
203012
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -202697,9 +203289,13 @@ export declare type TownsquareProjectManageAccessAddedInput = {
|
|
|
202697
203289
|
export declare type TownsquareProjectManageAccessInput = {
|
|
202698
203290
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
202699
203291
|
added?: InputMaybe<TownsquareProjectManageAccessAddedInput>;
|
|
203292
|
+
modified?: InputMaybe<TownsquareProjectManageAccessModifiedInput>;
|
|
202700
203293
|
projectId: Scalars['ID']['input'];
|
|
202701
203294
|
revoked?: InputMaybe<TownsquareProjectManageAccessRevokedInput>;
|
|
202702
203295
|
};
|
|
203296
|
+
export declare type TownsquareProjectManageAccessModifiedInput = {
|
|
203297
|
+
roles: Array<TownsquareProjectRoleModifiedInput>;
|
|
203298
|
+
};
|
|
202703
203299
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
202704
203300
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
202705
203301
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
@@ -202734,6 +203330,10 @@ export declare type TownsquareProjectRevokeAccessPayload = {
|
|
|
202734
203330
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202735
203331
|
success: Scalars['Boolean']['output'];
|
|
202736
203332
|
};
|
|
203333
|
+
export declare type TownsquareProjectRoleModifiedInput = {
|
|
203334
|
+
principalId: Scalars['ID']['input'];
|
|
203335
|
+
role: TownsquareProjectAccessRoleInput;
|
|
203336
|
+
};
|
|
202737
203337
|
export declare enum TownsquareProjectSortEnum {
|
|
202738
203338
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
202739
203339
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -202907,6 +203507,49 @@ export declare type TownsquareProjectsAddViewPayload = {
|
|
|
202907
203507
|
success: Scalars['Boolean']['output'];
|
|
202908
203508
|
views?: Maybe<TownsquareProjectUserViews>;
|
|
202909
203509
|
};
|
|
203510
|
+
export declare enum TownsquareProjectsAppPermission {
|
|
203511
|
+
Archive = "ARCHIVE",
|
|
203512
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
203513
|
+
Create = "CREATE",
|
|
203514
|
+
Manage = "MANAGE",
|
|
203515
|
+
Update = "UPDATE",
|
|
203516
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
203517
|
+
}
|
|
203518
|
+
export declare type TownsquareProjectsAppPermissionEntry = {
|
|
203519
|
+
__typename?: 'TownsquareProjectsAppPermissionEntry';
|
|
203520
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
203521
|
+
permission?: Maybe<TownsquareProjectsAppPermission>;
|
|
203522
|
+
};
|
|
203523
|
+
export declare type TownsquareProjectsAppPermissionInput = {
|
|
203524
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
203525
|
+
permission: TownsquareProjectsAppPermission;
|
|
203526
|
+
};
|
|
203527
|
+
export declare type TownsquareProjectsAppPermissionPolicy = Node & {
|
|
203528
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicy';
|
|
203529
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionEntry>>>;
|
|
203530
|
+
group?: Maybe<IdentityGroup>;
|
|
203531
|
+
id: Scalars['ID']['output'];
|
|
203532
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
203533
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
203534
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
203535
|
+
resourceId: Scalars['ID']['output'];
|
|
203536
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
203537
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
203538
|
+
};
|
|
203539
|
+
export declare type TownsquareProjectsAppPermissionPolicyConnection = {
|
|
203540
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyConnection';
|
|
203541
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicyEdge>>>;
|
|
203542
|
+
pageInfo: PageInfo;
|
|
203543
|
+
};
|
|
203544
|
+
export declare type TownsquareProjectsAppPermissionPolicyEdge = {
|
|
203545
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyEdge';
|
|
203546
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
203547
|
+
node?: Maybe<TownsquareProjectsAppPermissionPolicy>;
|
|
203548
|
+
};
|
|
203549
|
+
export declare type TownsquareProjectsAppPermissionPolicyInput = {
|
|
203550
|
+
appPermissions: Array<TownsquareProjectsAppPermissionInput>;
|
|
203551
|
+
id: Scalars['ID']['input'];
|
|
203552
|
+
};
|
|
202910
203553
|
export declare type TownsquareProjectsAppSettings = {
|
|
202911
203554
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
202912
203555
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -203851,6 +204494,16 @@ export declare type TownsquareUpdateEdge = {
|
|
|
203851
204494
|
cursor: Scalars['String']['output'];
|
|
203852
204495
|
node?: Maybe<TownsquareUpdate>;
|
|
203853
204496
|
};
|
|
204497
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesInput = {
|
|
204498
|
+
containerId: Scalars['ID']['input'];
|
|
204499
|
+
policies: Array<TownsquareGoalsAppPermissionPolicyInput>;
|
|
204500
|
+
};
|
|
204501
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesPayload = {
|
|
204502
|
+
__typename?: 'TownsquareUpdateGoalsAppPermissionPoliciesPayload';
|
|
204503
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204504
|
+
success: Scalars['Boolean']['output'];
|
|
204505
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicy>>>;
|
|
204506
|
+
};
|
|
203854
204507
|
export declare type TownsquareUpdateHighlightInput = {
|
|
203855
204508
|
description: Scalars['String']['input'];
|
|
203856
204509
|
summary: Scalars['String']['input'];
|
|
@@ -203883,6 +204536,16 @@ export declare type TownsquareUpdateNoteInput = {
|
|
|
203883
204536
|
updateNoteId?: InputMaybe<Scalars['ID']['input']>;
|
|
203884
204537
|
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
203885
204538
|
};
|
|
204539
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesInput = {
|
|
204540
|
+
containerId: Scalars['ID']['input'];
|
|
204541
|
+
policies: Array<TownsquareProjectsAppPermissionPolicyInput>;
|
|
204542
|
+
};
|
|
204543
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesPayload = {
|
|
204544
|
+
__typename?: 'TownsquareUpdateProjectsAppPermissionPoliciesPayload';
|
|
204545
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204546
|
+
success: Scalars['Boolean']['output'];
|
|
204547
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicy>>>;
|
|
204548
|
+
};
|
|
203886
204549
|
export declare enum TownsquareUpdateStateFilter {
|
|
203887
204550
|
Active = "ACTIVE",
|
|
203888
204551
|
AtRisk = "AT_RISK",
|
|
@@ -205806,6 +206469,7 @@ export declare type TrelloConvertBoardToTemplateInput = {
|
|
|
205806
206469
|
export declare type TrelloConvertBoardToTemplatePayload = Payload & {
|
|
205807
206470
|
__typename?: 'TrelloConvertBoardToTemplatePayload';
|
|
205808
206471
|
board?: Maybe<TrelloBoard>;
|
|
206472
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205809
206473
|
errors?: Maybe<Array<MutationError>>;
|
|
205810
206474
|
success: Scalars['Boolean']['output'];
|
|
205811
206475
|
};
|
|
@@ -205935,6 +206599,7 @@ export declare type TrelloCreateBoardWithAiInput = {
|
|
|
205935
206599
|
export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
205936
206600
|
__typename?: 'TrelloCreateBoardWithAiPayload';
|
|
205937
206601
|
board?: Maybe<TrelloBoard>;
|
|
206602
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205938
206603
|
errors?: Maybe<Array<MutationError>>;
|
|
205939
206604
|
success: Scalars['Boolean']['output'];
|
|
205940
206605
|
};
|
|
@@ -207278,6 +207943,7 @@ export declare type TrelloMirrorCard = {
|
|
|
207278
207943
|
id: Scalars['ID']['output'];
|
|
207279
207944
|
mirrorCard?: Maybe<TrelloBaseCard>;
|
|
207280
207945
|
sourceBoard?: Maybe<TrelloBoard>;
|
|
207946
|
+
sourceBoardV2?: Maybe<TrelloBaseBoard>;
|
|
207281
207947
|
sourceCard?: Maybe<TrelloBaseCard>;
|
|
207282
207948
|
};
|
|
207283
207949
|
export declare type TrelloMirrorCardConnection = {
|
|
@@ -209023,6 +209689,7 @@ export declare type TrelloReactionLimits = {
|
|
|
209023
209689
|
};
|
|
209024
209690
|
export declare type TrelloRefreshManifestInput = {
|
|
209025
209691
|
cardId: Scalars['ID']['input'];
|
|
209692
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
209026
209693
|
};
|
|
209027
209694
|
export declare type TrelloRefreshManifestPayload = Payload & {
|
|
209028
209695
|
__typename?: 'TrelloRefreshManifestPayload';
|
|
@@ -209668,6 +210335,7 @@ export declare type TrelloUpdateBoardVisibilityInput = {
|
|
|
209668
210335
|
export declare type TrelloUpdateBoardVisibilityPayload = Payload & {
|
|
209669
210336
|
__typename?: 'TrelloUpdateBoardVisibilityPayload';
|
|
209670
210337
|
board?: Maybe<TrelloBoard>;
|
|
210338
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
209671
210339
|
errors?: Maybe<Array<MutationError>>;
|
|
209672
210340
|
success: Scalars['Boolean']['output'];
|
|
209673
210341
|
};
|