@forge/cli-shared 8.21.1-next.0 → 8.22.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/out/graphql/graphql-types.d.ts +1674 -780
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +223 -59
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +3 -1
- package/package.json +2 -2
|
@@ -281,9 +281,34 @@ export declare type AiOpsIncidentSuggestionResponse = {
|
|
|
281
281
|
};
|
|
282
282
|
export declare type AiOpsInvestigation = {
|
|
283
283
|
__typename?: 'AIOpsInvestigation';
|
|
284
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
284
285
|
id: Scalars['ID']['output'];
|
|
286
|
+
input: AiOpsInvestigationInputContext;
|
|
287
|
+
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
288
|
+
status?: Maybe<AiOpsInvestigationStatus>;
|
|
289
|
+
};
|
|
290
|
+
export declare type AiOpsInvestigationInputContext = {
|
|
291
|
+
__typename?: 'AIOpsInvestigationInputContext';
|
|
292
|
+
inScopeServiceIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
293
|
+
sourceEntityId: Scalars['String']['output'];
|
|
294
|
+
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
285
295
|
};
|
|
286
296
|
export declare type AiOpsInvestigationQueryResult = AiOpsInvestigation | QueryError;
|
|
297
|
+
export declare enum AiOpsInvestigationSourceEntityType {
|
|
298
|
+
Incident = "INCIDENT"
|
|
299
|
+
}
|
|
300
|
+
export declare enum AiOpsInvestigationStatus {
|
|
301
|
+
Cancelled = "CANCELLED",
|
|
302
|
+
Completed = "COMPLETED",
|
|
303
|
+
Failed = "FAILED",
|
|
304
|
+
InProgress = "IN_PROGRESS",
|
|
305
|
+
New = "NEW"
|
|
306
|
+
}
|
|
307
|
+
export declare type AiOpsTriggerInvestigationInput = {
|
|
308
|
+
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
309
|
+
sourceEntityId: Scalars['ID']['input'];
|
|
310
|
+
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
311
|
+
};
|
|
287
312
|
export declare type AvpAddDashboardElementInput = {
|
|
288
313
|
canvasRowId: Scalars['ID']['input'];
|
|
289
314
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -334,6 +359,7 @@ export declare enum AvpAnalyticsAggregationType {
|
|
|
334
359
|
Avg = "AVG",
|
|
335
360
|
Max = "MAX",
|
|
336
361
|
Min = "MIN",
|
|
362
|
+
None = "NONE",
|
|
337
363
|
Sum = "SUM",
|
|
338
364
|
TotalCount = "TOTAL_COUNT",
|
|
339
365
|
UniqueCount = "UNIQUE_COUNT"
|
|
@@ -495,6 +521,18 @@ export declare type AvpAnalyticsDeleteModelPayload = Payload & {
|
|
|
495
521
|
errors?: Maybe<Array<MutationError>>;
|
|
496
522
|
success: Scalars['Boolean']['output'];
|
|
497
523
|
};
|
|
524
|
+
export declare type AvpAnalyticsDiscardMetricUpdatesInput = {
|
|
525
|
+
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
526
|
+
metricId: Scalars['ID']['input'];
|
|
527
|
+
metricVersion?: InputMaybe<Scalars['String']['input']>;
|
|
528
|
+
};
|
|
529
|
+
export declare type AvpAnalyticsDiscardMetricUpdatesPayload = Payload & {
|
|
530
|
+
__typename?: 'AVPAnalyticsDiscardMetricUpdatesPayload';
|
|
531
|
+
acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
532
|
+
errors?: Maybe<Array<MutationError>>;
|
|
533
|
+
metric?: Maybe<AvpAnalyticsMetric>;
|
|
534
|
+
success: Scalars['Boolean']['output'];
|
|
535
|
+
};
|
|
498
536
|
export declare type AvpAnalyticsDiscardModelUpdatesInput = {
|
|
499
537
|
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
500
538
|
forceDiscard?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -527,7 +565,11 @@ export declare enum AvpAnalyticsFilterOperator {
|
|
|
527
565
|
IsNotEmpty = "IS_NOT_EMPTY",
|
|
528
566
|
NotEquals = "NOT_EQUALS",
|
|
529
567
|
On = "ON",
|
|
530
|
-
Range = "RANGE"
|
|
568
|
+
Range = "RANGE",
|
|
569
|
+
RangeDays = "RANGE_DAYS",
|
|
570
|
+
RangeMonths = "RANGE_MONTHS",
|
|
571
|
+
RangeWeeks = "RANGE_WEEKS",
|
|
572
|
+
RangeYears = "RANGE_YEARS"
|
|
531
573
|
}
|
|
532
574
|
export declare enum AvpAnalyticsFilterType {
|
|
533
575
|
MetricCloudId = "METRIC_CLOUD_ID",
|
|
@@ -717,6 +759,7 @@ export declare type AvpAnalyticsMetric = {
|
|
|
717
759
|
defaultVisualization?: Maybe<AvpAnalyticsVisualizationConfig>;
|
|
718
760
|
definition?: Maybe<AvpAnalyticsMetricDefinition>;
|
|
719
761
|
description?: Maybe<Scalars['String']['output']>;
|
|
762
|
+
errors?: Maybe<Array<AvpAnalyticsMetricError>>;
|
|
720
763
|
id: Scalars['ID']['output'];
|
|
721
764
|
metadata?: Maybe<AvpAnalyticsMetricMetadata>;
|
|
722
765
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -751,7 +794,7 @@ export declare type AvpAnalyticsMetricDataHeader = {
|
|
|
751
794
|
};
|
|
752
795
|
export declare type AvpAnalyticsMetricDataRow = {
|
|
753
796
|
__typename?: 'AVPAnalyticsMetricDataRow';
|
|
754
|
-
values: Array<Scalars['String']['output']
|
|
797
|
+
values: Array<Maybe<Scalars['String']['output']>>;
|
|
755
798
|
};
|
|
756
799
|
export declare type AvpAnalyticsMetricDataSort = {
|
|
757
800
|
columnRef: AvpAnalyticsColumnReferenceInput;
|
|
@@ -764,6 +807,7 @@ export declare type AvpAnalyticsMetricDefinition = {
|
|
|
764
807
|
__typename?: 'AVPAnalyticsMetricDefinition';
|
|
765
808
|
aggregationType?: Maybe<AvpAnalyticsAggregationType>;
|
|
766
809
|
columnId?: Maybe<Scalars['ID']['output']>;
|
|
810
|
+
errors?: Maybe<Array<AvpAnalyticsMetricError>>;
|
|
767
811
|
filters?: Maybe<Array<AvpAnalyticsMetricFilter>>;
|
|
768
812
|
modelId?: Maybe<Scalars['ID']['output']>;
|
|
769
813
|
modelVersion?: Maybe<Scalars['String']['output']>;
|
|
@@ -780,9 +824,27 @@ export declare type AvpAnalyticsMetricEdge = {
|
|
|
780
824
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
781
825
|
node: AvpAnalyticsMetric;
|
|
782
826
|
};
|
|
827
|
+
export declare type AvpAnalyticsMetricError = {
|
|
828
|
+
__typename?: 'AVPAnalyticsMetricError';
|
|
829
|
+
message: Scalars['String']['output'];
|
|
830
|
+
type?: Maybe<AvpAnalyticsMetricErrorType>;
|
|
831
|
+
};
|
|
832
|
+
export declare enum AvpAnalyticsMetricErrorType {
|
|
833
|
+
InvalidAggregationColumn = "INVALID_AGGREGATION_COLUMN",
|
|
834
|
+
InvalidAggregationType = "INVALID_AGGREGATION_TYPE",
|
|
835
|
+
InvalidChartType = "INVALID_CHART_TYPE",
|
|
836
|
+
InvalidCloudId = "INVALID_CLOUD_ID",
|
|
837
|
+
InvalidFilter = "INVALID_FILTER",
|
|
838
|
+
InvalidGroupBy = "INVALID_GROUP_BY",
|
|
839
|
+
InvalidMetricName = "INVALID_METRIC_NAME",
|
|
840
|
+
InvalidModel = "INVALID_MODEL",
|
|
841
|
+
InvalidSegmentBy = "INVALID_SEGMENT_BY",
|
|
842
|
+
InvalidVisualizationColumns = "INVALID_VISUALIZATION_COLUMNS"
|
|
843
|
+
}
|
|
783
844
|
export declare type AvpAnalyticsMetricFilter = {
|
|
784
845
|
__typename?: 'AVPAnalyticsMetricFilter';
|
|
785
846
|
columnId: Scalars['ID']['output'];
|
|
847
|
+
errors?: Maybe<Array<AvpAnalyticsMetricError>>;
|
|
786
848
|
operator: AvpAnalyticsFilterOperator;
|
|
787
849
|
value: AvpAnalyticsFilterValue;
|
|
788
850
|
};
|
|
@@ -1076,8 +1138,9 @@ export declare type AvpAnalyticsUpdateModelPayload = Payload & {
|
|
|
1076
1138
|
};
|
|
1077
1139
|
export declare type AvpAnalyticsVisualizationConfig = {
|
|
1078
1140
|
__typename?: 'AVPAnalyticsVisualizationConfig';
|
|
1079
|
-
chartType
|
|
1080
|
-
columnIds
|
|
1141
|
+
chartType?: Maybe<AvpAnalyticsChartType>;
|
|
1142
|
+
columnIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1143
|
+
errors?: Maybe<Array<AvpAnalyticsMetricError>>;
|
|
1081
1144
|
filters?: Maybe<Array<AvpAnalyticsMetricFilter>>;
|
|
1082
1145
|
metadata?: Maybe<Array<AvpAnalyticsVisualizationConfigMetadata>>;
|
|
1083
1146
|
};
|
|
@@ -2067,9 +2130,19 @@ export declare type AvpSearchDashboardsInput = {
|
|
|
2067
2130
|
creatorAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2068
2131
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2069
2132
|
sortKey?: InputMaybe<AvpDashboardSortKey>;
|
|
2133
|
+
starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2070
2134
|
status?: InputMaybe<AvpDashboardStatus>;
|
|
2071
2135
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
2072
2136
|
};
|
|
2137
|
+
export declare type AvpStarDashboardInput = {
|
|
2138
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2139
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2140
|
+
};
|
|
2141
|
+
export declare type AvpStarDashboardPayload = Payload & {
|
|
2142
|
+
__typename?: 'AVPStarDashboardPayload';
|
|
2143
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2144
|
+
success: Scalars['Boolean']['output'];
|
|
2145
|
+
};
|
|
2073
2146
|
export declare type AvpTemplatePlaceholderReplacement = {
|
|
2074
2147
|
placeholderName: Scalars['String']['input'];
|
|
2075
2148
|
replacementValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2095,6 +2168,15 @@ export declare type AvpTrackDashboardViewPayload = Payload & {
|
|
|
2095
2168
|
errors?: Maybe<Array<MutationError>>;
|
|
2096
2169
|
success: Scalars['Boolean']['output'];
|
|
2097
2170
|
};
|
|
2171
|
+
export declare type AvpUnstarDashboardInput = {
|
|
2172
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2173
|
+
workspaceAri: Scalars['ID']['input'];
|
|
2174
|
+
};
|
|
2175
|
+
export declare type AvpUnstarDashboardPayload = Payload & {
|
|
2176
|
+
__typename?: 'AVPUnstarDashboardPayload';
|
|
2177
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2178
|
+
success: Scalars['Boolean']['output'];
|
|
2179
|
+
};
|
|
2098
2180
|
export declare type AvpUpdateChartInput = {
|
|
2099
2181
|
chart: AvpChartInput;
|
|
2100
2182
|
chartAri: Scalars['ID']['input'];
|
|
@@ -2395,7 +2477,8 @@ export declare enum ActionsAuthType {
|
|
|
2395
2477
|
export declare enum ActionsCapabilityType {
|
|
2396
2478
|
AgentStudio = "AGENT_STUDIO",
|
|
2397
2479
|
Ai = "AI",
|
|
2398
|
-
Automation = "AUTOMATION"
|
|
2480
|
+
Automation = "AUTOMATION",
|
|
2481
|
+
JsmTelemetry = "JSM_TELEMETRY"
|
|
2399
2482
|
}
|
|
2400
2483
|
export declare enum ActionsConfigurationLayout {
|
|
2401
2484
|
VerticalLayout = "VerticalLayout"
|
|
@@ -4691,6 +4774,7 @@ export declare type AgentSession = AgentSessionNode & {
|
|
|
4691
4774
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
4692
4775
|
id?: Maybe<Scalars['ID']['output']>;
|
|
4693
4776
|
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
4777
|
+
lastStateChangeAt?: Maybe<Scalars['Long']['output']>;
|
|
4694
4778
|
state?: Maybe<Scalars['String']['output']>;
|
|
4695
4779
|
version?: Maybe<Scalars['Long']['output']>;
|
|
4696
4780
|
};
|
|
@@ -4841,6 +4925,7 @@ export declare type AgentStudioAdfContent = {
|
|
|
4841
4925
|
export declare type AgentStudioAgent = {
|
|
4842
4926
|
authoringTeam?: Maybe<TeamV2>;
|
|
4843
4927
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
4928
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
4844
4929
|
description?: Maybe<Scalars['String']['output']>;
|
|
4845
4930
|
etag?: Maybe<Scalars['String']['output']>;
|
|
4846
4931
|
id: Scalars['ID']['output'];
|
|
@@ -4967,6 +5052,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
4967
5052
|
behaviour?: Maybe<Scalars['String']['output']>;
|
|
4968
5053
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
4969
5054
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
5055
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
4970
5056
|
creator?: Maybe<User>;
|
|
4971
5057
|
creatorType?: Maybe<Scalars['String']['output']>;
|
|
4972
5058
|
deactivated?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4995,6 +5081,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
4995
5081
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
4996
5082
|
name?: Maybe<Scalars['String']['output']>;
|
|
4997
5083
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
5084
|
+
responseStrategy?: Maybe<Scalars['String']['output']>;
|
|
4998
5085
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
4999
5086
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
5000
5087
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -5274,6 +5361,7 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
5274
5361
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5275
5362
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
5276
5363
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5364
|
+
responseStrategy?: InputMaybe<Scalars['String']['input']>;
|
|
5277
5365
|
scenarios?: InputMaybe<Array<InputMaybe<AgentStudioScenarioInput>>>;
|
|
5278
5366
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
5279
5367
|
widgets?: InputMaybe<Array<InputMaybe<AgentStudioWidgetInput>>>;
|
|
@@ -5885,6 +5973,7 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
|
|
|
5885
5973
|
__typename?: 'AgentStudioServiceAgent';
|
|
5886
5974
|
authoringTeam?: Maybe<TeamV2>;
|
|
5887
5975
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
5976
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
5888
5977
|
defaultJiraRequestTypeId?: Maybe<Scalars['String']['output']>;
|
|
5889
5978
|
description?: Maybe<Scalars['String']['output']>;
|
|
5890
5979
|
etag?: Maybe<Scalars['String']['output']>;
|
|
@@ -6218,6 +6307,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
6218
6307
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6219
6308
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
6220
6309
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6310
|
+
responseStrategy?: InputMaybe<Scalars['String']['input']>;
|
|
6221
6311
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
6222
6312
|
};
|
|
6223
6313
|
export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
@@ -6382,9 +6472,9 @@ export declare type AgentStudioWidgets = {
|
|
|
6382
6472
|
export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
|
|
6383
6473
|
export declare type AgentWorkspaceAgent = {
|
|
6384
6474
|
__typename?: 'AgentWorkspaceAgent';
|
|
6475
|
+
assignedSkills?: Maybe<Array<AgentWorkspaceSkillAgentAssignment>>;
|
|
6385
6476
|
displayName: Scalars['String']['output'];
|
|
6386
6477
|
id: Scalars['ID']['output'];
|
|
6387
|
-
skills: Array<AgentWorkspaceUserSkill>;
|
|
6388
6478
|
teamARIs: Array<Scalars['ID']['output']>;
|
|
6389
6479
|
teamIds: Array<Scalars['ID']['output']>;
|
|
6390
6480
|
teamNames: Array<Scalars['String']['output']>;
|
|
@@ -6453,14 +6543,11 @@ export declare type AgentWorkspaceAppliedFilters = {
|
|
|
6453
6543
|
};
|
|
6454
6544
|
export declare type AgentWorkspaceArchiveSkillInput = {
|
|
6455
6545
|
cloudId: Scalars['ID']['input'];
|
|
6456
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6457
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6458
6546
|
skillId: Scalars['ID']['input'];
|
|
6459
6547
|
};
|
|
6460
6548
|
export declare type AgentWorkspaceArchiveSkillPayload = {
|
|
6461
6549
|
__typename?: 'AgentWorkspaceArchiveSkillPayload';
|
|
6462
|
-
|
|
6463
|
-
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
6550
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6464
6551
|
success: Scalars['Boolean']['output'];
|
|
6465
6552
|
};
|
|
6466
6553
|
export declare type AgentWorkspaceAssignAgentToGapInput = {
|
|
@@ -6478,19 +6565,16 @@ export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
|
6478
6565
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
6479
6566
|
success: Scalars['Boolean']['output'];
|
|
6480
6567
|
};
|
|
6481
|
-
export declare type
|
|
6568
|
+
export declare type AgentWorkspaceAssignAgentsToSkillInput = {
|
|
6482
6569
|
cloudId: Scalars['ID']['input'];
|
|
6483
|
-
proficiencyLevel: Scalars['Int']['input'];
|
|
6484
6570
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6485
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6486
6571
|
skillId: Scalars['ID']['input'];
|
|
6487
|
-
|
|
6572
|
+
userAris: Array<Scalars['ID']['input']>;
|
|
6488
6573
|
};
|
|
6489
|
-
export declare type
|
|
6490
|
-
__typename?: '
|
|
6491
|
-
|
|
6574
|
+
export declare type AgentWorkspaceAssignAgentsToSkillPayload = {
|
|
6575
|
+
__typename?: 'AgentWorkspaceAssignAgentsToSkillPayload';
|
|
6576
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6492
6577
|
success: Scalars['Boolean']['output'];
|
|
6493
|
-
userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
6494
6578
|
};
|
|
6495
6579
|
export declare type AgentWorkspaceAvailabilityConnection = {
|
|
6496
6580
|
__typename?: 'AgentWorkspaceAvailabilityConnection';
|
|
@@ -6525,6 +6609,15 @@ export declare type AgentWorkspaceAvailabilityInput = {
|
|
|
6525
6609
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6526
6610
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6527
6611
|
};
|
|
6612
|
+
export declare type AgentWorkspaceAvailabilityInputPayload = {
|
|
6613
|
+
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6614
|
+
cloudId: Scalars['ID']['input'];
|
|
6615
|
+
projectId: Scalars['ID']['input'];
|
|
6616
|
+
sortBy?: InputMaybe<AgentWorkspaceAvailabilitySortField>;
|
|
6617
|
+
sortOrder?: InputMaybe<AgentWorkspaceSortDirection>;
|
|
6618
|
+
statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
|
|
6619
|
+
teamId: Scalars['ID']['input'];
|
|
6620
|
+
};
|
|
6528
6621
|
export declare type AgentWorkspaceAvailabilityPageInfo = {
|
|
6529
6622
|
__typename?: 'AgentWorkspaceAvailabilityPageInfo';
|
|
6530
6623
|
currentPage: Scalars['Int']['output'];
|
|
@@ -6536,6 +6629,7 @@ export declare type AgentWorkspaceAvailabilityPageInfo = {
|
|
|
6536
6629
|
totalCount: Scalars['Int']['output'];
|
|
6537
6630
|
totalPages: Scalars['Int']['output'];
|
|
6538
6631
|
};
|
|
6632
|
+
export declare type AgentWorkspaceAvailabilityResult = AgentWorkspaceAvailabilityConnection | QueryError;
|
|
6539
6633
|
export declare enum AgentWorkspaceAvailabilitySortField {
|
|
6540
6634
|
LastUpdated = "LAST_UPDATED",
|
|
6541
6635
|
Name = "NAME",
|
|
@@ -6637,202 +6731,6 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
6637
6731
|
totalCapacity: Scalars['Int']['output'];
|
|
6638
6732
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
6639
6733
|
};
|
|
6640
|
-
export declare type AgentWorkspaceCatalog = {
|
|
6641
|
-
__typename?: 'AgentWorkspaceCatalog';
|
|
6642
|
-
catalogConfigs?: Maybe<Array<AgentWorkspaceCatalogConfig>>;
|
|
6643
|
-
catalogType: AgentWorkspaceCatalogType;
|
|
6644
|
-
childCatalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
|
|
6645
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
6646
|
-
id: Scalars['ID']['output'];
|
|
6647
|
-
name: Scalars['String']['output'];
|
|
6648
|
-
parentCatalog?: Maybe<AgentWorkspaceCatalog>;
|
|
6649
|
-
proficiencyDefinitions: Array<Scalars['String']['output']>;
|
|
6650
|
-
};
|
|
6651
|
-
export declare type AgentWorkspaceCatalogAssociationInput = {
|
|
6652
|
-
catalogId: Scalars['ID']['input'];
|
|
6653
|
-
minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
6654
|
-
proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
6655
|
-
skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
|
|
6656
|
-
};
|
|
6657
|
-
export declare type AgentWorkspaceCatalogConfig = {
|
|
6658
|
-
__typename?: 'AgentWorkspaceCatalogConfig';
|
|
6659
|
-
catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
6660
|
-
catalogId: Scalars['ID']['output'];
|
|
6661
|
-
id: Scalars['ID']['output'];
|
|
6662
|
-
minSkillProficiencyLevel?: Maybe<Scalars['Int']['output']>;
|
|
6663
|
-
proficiencyLevel: Scalars['Int']['output'];
|
|
6664
|
-
skill?: Maybe<AgentWorkspaceSkill>;
|
|
6665
|
-
skillId: Scalars['ID']['output'];
|
|
6666
|
-
skillRequirement?: Maybe<AgentWorkspaceSkillRequirementEnum>;
|
|
6667
|
-
};
|
|
6668
|
-
export declare type AgentWorkspaceCatalogConfigConnection = {
|
|
6669
|
-
__typename?: 'AgentWorkspaceCatalogConfigConnection';
|
|
6670
|
-
edges?: Maybe<Array<AgentWorkspaceCatalogConfigEdge>>;
|
|
6671
|
-
nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalogConfig>>>;
|
|
6672
|
-
pageInfo: AgentWorkspacePageInfo;
|
|
6673
|
-
};
|
|
6674
|
-
export declare type AgentWorkspaceCatalogConfigCreateResponse = {
|
|
6675
|
-
__typename?: 'AgentWorkspaceCatalogConfigCreateResponse';
|
|
6676
|
-
catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
|
|
6677
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6678
|
-
success: Scalars['Boolean']['output'];
|
|
6679
|
-
};
|
|
6680
|
-
export declare type AgentWorkspaceCatalogConfigDeleteInput = {
|
|
6681
|
-
cloudId: Scalars['ID']['input'];
|
|
6682
|
-
id: Scalars['ID']['input'];
|
|
6683
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6684
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6685
|
-
};
|
|
6686
|
-
export declare type AgentWorkspaceCatalogConfigDeleteResponse = {
|
|
6687
|
-
__typename?: 'AgentWorkspaceCatalogConfigDeleteResponse';
|
|
6688
|
-
deletedCatalogConfigId?: Maybe<Scalars['ID']['output']>;
|
|
6689
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6690
|
-
success: Scalars['Boolean']['output'];
|
|
6691
|
-
};
|
|
6692
|
-
export declare type AgentWorkspaceCatalogConfigEdge = {
|
|
6693
|
-
__typename?: 'AgentWorkspaceCatalogConfigEdge';
|
|
6694
|
-
cursor: Scalars['String']['output'];
|
|
6695
|
-
node: AgentWorkspaceCatalogConfig;
|
|
6696
|
-
};
|
|
6697
|
-
export declare type AgentWorkspaceCatalogConfigFilterInput = {
|
|
6698
|
-
catalogId: Scalars['ID']['input'];
|
|
6699
|
-
proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
6700
|
-
skillId?: InputMaybe<Scalars['ID']['input']>;
|
|
6701
|
-
};
|
|
6702
|
-
export declare type AgentWorkspaceCatalogConfigInput = {
|
|
6703
|
-
cloudId: Scalars['ID']['input'];
|
|
6704
|
-
id: Scalars['ID']['input'];
|
|
6705
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6706
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6707
|
-
};
|
|
6708
|
-
export declare type AgentWorkspaceCatalogConfigUpdateResponse = {
|
|
6709
|
-
__typename?: 'AgentWorkspaceCatalogConfigUpdateResponse';
|
|
6710
|
-
catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
|
|
6711
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6712
|
-
success: Scalars['Boolean']['output'];
|
|
6713
|
-
};
|
|
6714
|
-
export declare type AgentWorkspaceCatalogConfigsInput = {
|
|
6715
|
-
cloudId: Scalars['ID']['input'];
|
|
6716
|
-
filter?: InputMaybe<AgentWorkspaceCatalogConfigFilterInput>;
|
|
6717
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
6718
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6719
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6720
|
-
};
|
|
6721
|
-
export declare type AgentWorkspaceCatalogConnection = {
|
|
6722
|
-
__typename?: 'AgentWorkspaceCatalogConnection';
|
|
6723
|
-
edges?: Maybe<Array<AgentWorkspaceCatalogEdge>>;
|
|
6724
|
-
nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalog>>>;
|
|
6725
|
-
pageInfo: AgentWorkspacePageInfo;
|
|
6726
|
-
};
|
|
6727
|
-
export declare type AgentWorkspaceCatalogCreateResponse = {
|
|
6728
|
-
__typename?: 'AgentWorkspaceCatalogCreateResponse';
|
|
6729
|
-
catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
6730
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6731
|
-
success: Scalars['Boolean']['output'];
|
|
6732
|
-
};
|
|
6733
|
-
export declare type AgentWorkspaceCatalogDeleteInput = {
|
|
6734
|
-
cloudId: Scalars['ID']['input'];
|
|
6735
|
-
id: Scalars['ID']['input'];
|
|
6736
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6737
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6738
|
-
};
|
|
6739
|
-
export declare type AgentWorkspaceCatalogDeleteResponse = {
|
|
6740
|
-
__typename?: 'AgentWorkspaceCatalogDeleteResponse';
|
|
6741
|
-
deletedCatalogId?: Maybe<Scalars['ID']['output']>;
|
|
6742
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6743
|
-
success: Scalars['Boolean']['output'];
|
|
6744
|
-
};
|
|
6745
|
-
export declare type AgentWorkspaceCatalogEdge = {
|
|
6746
|
-
__typename?: 'AgentWorkspaceCatalogEdge';
|
|
6747
|
-
cursor: Scalars['String']['output'];
|
|
6748
|
-
node: AgentWorkspaceCatalog;
|
|
6749
|
-
};
|
|
6750
|
-
export declare type AgentWorkspaceCatalogFilterInput = {
|
|
6751
|
-
catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
6752
|
-
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6753
|
-
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6754
|
-
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
6755
|
-
};
|
|
6756
|
-
export declare type AgentWorkspaceCatalogInput = {
|
|
6757
|
-
cloudId: Scalars['ID']['input'];
|
|
6758
|
-
id: Scalars['ID']['input'];
|
|
6759
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6760
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6761
|
-
};
|
|
6762
|
-
export declare type AgentWorkspaceCatalogType = {
|
|
6763
|
-
__typename?: 'AgentWorkspaceCatalogType';
|
|
6764
|
-
catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
|
|
6765
|
-
childCatalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
6766
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
6767
|
-
hierarchyDefinition: AgentWorkspaceHierarchyDefinition;
|
|
6768
|
-
id: Scalars['ID']['output'];
|
|
6769
|
-
name: Scalars['String']['output'];
|
|
6770
|
-
parentCatalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
6771
|
-
};
|
|
6772
|
-
export declare type AgentWorkspaceCatalogTypeConnection = {
|
|
6773
|
-
__typename?: 'AgentWorkspaceCatalogTypeConnection';
|
|
6774
|
-
edges?: Maybe<Array<AgentWorkspaceCatalogTypeEdge>>;
|
|
6775
|
-
nodes?: Maybe<Array<Maybe<AgentWorkspaceCatalogType>>>;
|
|
6776
|
-
pageInfo: AgentWorkspacePageInfo;
|
|
6777
|
-
};
|
|
6778
|
-
export declare type AgentWorkspaceCatalogTypeCreateResponse = {
|
|
6779
|
-
__typename?: 'AgentWorkspaceCatalogTypeCreateResponse';
|
|
6780
|
-
catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
6781
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6782
|
-
success: Scalars['Boolean']['output'];
|
|
6783
|
-
};
|
|
6784
|
-
export declare type AgentWorkspaceCatalogTypeDeleteInput = {
|
|
6785
|
-
cloudId: Scalars['ID']['input'];
|
|
6786
|
-
id: Scalars['ID']['input'];
|
|
6787
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6788
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6789
|
-
};
|
|
6790
|
-
export declare type AgentWorkspaceCatalogTypeDeleteResponse = {
|
|
6791
|
-
__typename?: 'AgentWorkspaceCatalogTypeDeleteResponse';
|
|
6792
|
-
deletedCatalogTypeId?: Maybe<Scalars['ID']['output']>;
|
|
6793
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6794
|
-
success: Scalars['Boolean']['output'];
|
|
6795
|
-
};
|
|
6796
|
-
export declare type AgentWorkspaceCatalogTypeEdge = {
|
|
6797
|
-
__typename?: 'AgentWorkspaceCatalogTypeEdge';
|
|
6798
|
-
cursor: Scalars['String']['output'];
|
|
6799
|
-
node: AgentWorkspaceCatalogType;
|
|
6800
|
-
};
|
|
6801
|
-
export declare type AgentWorkspaceCatalogTypeFilterInput = {
|
|
6802
|
-
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6803
|
-
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6804
|
-
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
6805
|
-
};
|
|
6806
|
-
export declare type AgentWorkspaceCatalogTypeInput = {
|
|
6807
|
-
cloudId: Scalars['ID']['input'];
|
|
6808
|
-
id: Scalars['ID']['input'];
|
|
6809
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6810
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6811
|
-
};
|
|
6812
|
-
export declare type AgentWorkspaceCatalogTypeUpdateResponse = {
|
|
6813
|
-
__typename?: 'AgentWorkspaceCatalogTypeUpdateResponse';
|
|
6814
|
-
catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
6815
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6816
|
-
success: Scalars['Boolean']['output'];
|
|
6817
|
-
};
|
|
6818
|
-
export declare type AgentWorkspaceCatalogTypesInput = {
|
|
6819
|
-
cloudId: Scalars['ID']['input'];
|
|
6820
|
-
filter?: InputMaybe<AgentWorkspaceCatalogTypeFilterInput>;
|
|
6821
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
6822
|
-
};
|
|
6823
|
-
export declare type AgentWorkspaceCatalogUpdateResponse = {
|
|
6824
|
-
__typename?: 'AgentWorkspaceCatalogUpdateResponse';
|
|
6825
|
-
catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
6826
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6827
|
-
success: Scalars['Boolean']['output'];
|
|
6828
|
-
};
|
|
6829
|
-
export declare type AgentWorkspaceCatalogsInput = {
|
|
6830
|
-
cloudId: Scalars['ID']['input'];
|
|
6831
|
-
filter?: InputMaybe<AgentWorkspaceCatalogFilterInput>;
|
|
6832
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
6833
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6834
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6835
|
-
};
|
|
6836
6734
|
export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
|
|
6837
6735
|
groups: Array<AgentWorkspaceCreateTeamFromGroupInput>;
|
|
6838
6736
|
projectARI: Scalars['ID']['input'];
|
|
@@ -6846,43 +6744,6 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
|
6846
6744
|
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
6847
6745
|
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
6848
6746
|
};
|
|
6849
|
-
export declare type AgentWorkspaceCreateCatalogConfigInput = {
|
|
6850
|
-
catalogId: Scalars['ID']['input'];
|
|
6851
|
-
cloudId: Scalars['ID']['input'];
|
|
6852
|
-
minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
6853
|
-
proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
6854
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6855
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6856
|
-
skillId: Scalars['ID']['input'];
|
|
6857
|
-
skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
|
|
6858
|
-
};
|
|
6859
|
-
export declare type AgentWorkspaceCreateCatalogInput = {
|
|
6860
|
-
cloudId: Scalars['ID']['input'];
|
|
6861
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
6862
|
-
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6863
|
-
name: Scalars['String']['input'];
|
|
6864
|
-
parentCatalogId?: InputMaybe<Scalars['ID']['input']>;
|
|
6865
|
-
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6866
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6867
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6868
|
-
thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
6869
|
-
};
|
|
6870
|
-
export declare type AgentWorkspaceCreateCatalogTypeInput = {
|
|
6871
|
-
cloudId: Scalars['ID']['input'];
|
|
6872
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
6873
|
-
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6874
|
-
name: Scalars['String']['input'];
|
|
6875
|
-
parentCatalogTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
6876
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6877
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6878
|
-
};
|
|
6879
|
-
export declare type AgentWorkspaceCreateHierarchyDefinitionInput = {
|
|
6880
|
-
cloudId: Scalars['ID']['input'];
|
|
6881
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
6882
|
-
name: Scalars['String']['input'];
|
|
6883
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6884
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6885
|
-
};
|
|
6886
6747
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
6887
6748
|
agentIds: Array<Scalars['ID']['input']>;
|
|
6888
6749
|
cloudId: Scalars['ID']['input'];
|
|
@@ -6923,12 +6784,6 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
6923
6784
|
projectId: Scalars['ID']['output'];
|
|
6924
6785
|
updatedAt: Scalars['DateTime']['output'];
|
|
6925
6786
|
};
|
|
6926
|
-
export declare type AgentWorkspaceDeleteHierarchyDefinitionInput = {
|
|
6927
|
-
cloudId: Scalars['ID']['input'];
|
|
6928
|
-
id: Scalars['ID']['input'];
|
|
6929
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6930
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6931
|
-
};
|
|
6932
6787
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
6933
6788
|
cloudId: Scalars['ID']['input'];
|
|
6934
6789
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -6954,19 +6809,6 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
6954
6809
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
6955
6810
|
success: Scalars['Boolean']['output'];
|
|
6956
6811
|
};
|
|
6957
|
-
export declare type AgentWorkspaceDeleteUserSkillInput = {
|
|
6958
|
-
cloudId: Scalars['ID']['input'];
|
|
6959
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6960
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
6961
|
-
skillId: Scalars['ID']['input'];
|
|
6962
|
-
userId: Scalars['ID']['input'];
|
|
6963
|
-
};
|
|
6964
|
-
export declare type AgentWorkspaceDeleteUserSkillPayload = {
|
|
6965
|
-
__typename?: 'AgentWorkspaceDeleteUserSkillPayload';
|
|
6966
|
-
deletedUserSkillId?: Maybe<Scalars['ID']['output']>;
|
|
6967
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
6968
|
-
success: Scalars['Boolean']['output'];
|
|
6969
|
-
};
|
|
6970
6812
|
export declare type AgentWorkspaceEditShiftInput = {
|
|
6971
6813
|
agentId: Scalars['ID']['input'];
|
|
6972
6814
|
newEndTime: Scalars['DateTime']['input'];
|
|
@@ -6981,17 +6823,6 @@ export declare type AgentWorkspaceEditShiftPayload = {
|
|
|
6981
6823
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
6982
6824
|
success: Scalars['Boolean']['output'];
|
|
6983
6825
|
};
|
|
6984
|
-
export declare type AgentWorkspaceEligibilityError = {
|
|
6985
|
-
__typename?: 'AgentWorkspaceEligibilityError';
|
|
6986
|
-
code: AgentWorkspaceEligibilityErrorCode;
|
|
6987
|
-
field?: Maybe<Scalars['String']['output']>;
|
|
6988
|
-
message: Scalars['String']['output'];
|
|
6989
|
-
};
|
|
6990
|
-
export declare enum AgentWorkspaceEligibilityErrorCode {
|
|
6991
|
-
InternalError = "INTERNAL_ERROR",
|
|
6992
|
-
TeamNotFound = "TEAM_NOT_FOUND",
|
|
6993
|
-
ValidationError = "VALIDATION_ERROR"
|
|
6994
|
-
}
|
|
6995
6826
|
export declare type AgentWorkspaceEligibleGroup = {
|
|
6996
6827
|
__typename?: 'AgentWorkspaceEligibleGroup';
|
|
6997
6828
|
group?: Maybe<IdentityGroup>;
|
|
@@ -7003,19 +6834,6 @@ export declare type AgentWorkspaceEligibleGroupsPayload = {
|
|
|
7003
6834
|
eligibleGroups: Array<AgentWorkspaceEligibleGroup>;
|
|
7004
6835
|
groupsTooLarge: Array<AgentWorkspaceGroupTooLarge>;
|
|
7005
6836
|
};
|
|
7006
|
-
export declare type AgentWorkspaceFindBestMatchAgentsInput = {
|
|
7007
|
-
cloudId: Scalars['ID']['input'];
|
|
7008
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7009
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7010
|
-
requirements: Array<AgentWorkspaceSkillRequirementInput>;
|
|
7011
|
-
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
7012
|
-
};
|
|
7013
|
-
export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
|
|
7014
|
-
__typename?: 'AgentWorkspaceFindBestMatchAgentsPayload';
|
|
7015
|
-
errors?: Maybe<Array<AgentWorkspaceEligibilityError>>;
|
|
7016
|
-
rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
|
|
7017
|
-
success: Scalars['Boolean']['output'];
|
|
7018
|
-
};
|
|
7019
6837
|
export declare type AgentWorkspaceGroupMember = {
|
|
7020
6838
|
__typename?: 'AgentWorkspaceGroupMember';
|
|
7021
6839
|
accountId: Scalars['String']['output'];
|
|
@@ -7026,72 +6844,6 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
7026
6844
|
group?: Maybe<IdentityGroup>;
|
|
7027
6845
|
groupAri: Scalars['ID']['output'];
|
|
7028
6846
|
};
|
|
7029
|
-
export declare type AgentWorkspaceHierarchyDefinition = {
|
|
7030
|
-
__typename?: 'AgentWorkspaceHierarchyDefinition';
|
|
7031
|
-
catalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
|
|
7032
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
7033
|
-
id: Scalars['ID']['output'];
|
|
7034
|
-
name: Scalars['String']['output'];
|
|
7035
|
-
};
|
|
7036
|
-
export declare type AgentWorkspaceHierarchyDefinitionConnection = {
|
|
7037
|
-
__typename?: 'AgentWorkspaceHierarchyDefinitionConnection';
|
|
7038
|
-
edges?: Maybe<Array<AgentWorkspaceHierarchyDefinitionEdge>>;
|
|
7039
|
-
nodes?: Maybe<Array<Maybe<AgentWorkspaceHierarchyDefinition>>>;
|
|
7040
|
-
pageInfo: AgentWorkspacePageInfo;
|
|
7041
|
-
};
|
|
7042
|
-
export declare type AgentWorkspaceHierarchyDefinitionCreateResponse = {
|
|
7043
|
-
__typename?: 'AgentWorkspaceHierarchyDefinitionCreateResponse';
|
|
7044
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7045
|
-
hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
7046
|
-
success: Scalars['Boolean']['output'];
|
|
7047
|
-
};
|
|
7048
|
-
export declare type AgentWorkspaceHierarchyDefinitionDeleteResponse = {
|
|
7049
|
-
__typename?: 'AgentWorkspaceHierarchyDefinitionDeleteResponse';
|
|
7050
|
-
deletedHierarchyDefinitionId?: Maybe<Scalars['ID']['output']>;
|
|
7051
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7052
|
-
success: Scalars['Boolean']['output'];
|
|
7053
|
-
};
|
|
7054
|
-
export declare type AgentWorkspaceHierarchyDefinitionEdge = {
|
|
7055
|
-
__typename?: 'AgentWorkspaceHierarchyDefinitionEdge';
|
|
7056
|
-
cursor: Scalars['String']['output'];
|
|
7057
|
-
node: AgentWorkspaceHierarchyDefinition;
|
|
7058
|
-
};
|
|
7059
|
-
export declare type AgentWorkspaceHierarchyDefinitionFilterInput = {
|
|
7060
|
-
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7061
|
-
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
7062
|
-
};
|
|
7063
|
-
export declare type AgentWorkspaceHierarchyDefinitionInput = {
|
|
7064
|
-
cloudId: Scalars['ID']['input'];
|
|
7065
|
-
id: Scalars['ID']['input'];
|
|
7066
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7067
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7068
|
-
};
|
|
7069
|
-
export declare type AgentWorkspaceHierarchyDefinitionUpdateResponse = {
|
|
7070
|
-
__typename?: 'AgentWorkspaceHierarchyDefinitionUpdateResponse';
|
|
7071
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7072
|
-
hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
7073
|
-
success: Scalars['Boolean']['output'];
|
|
7074
|
-
};
|
|
7075
|
-
export declare type AgentWorkspaceHierarchyDefinitionsInput = {
|
|
7076
|
-
cloudId: Scalars['ID']['input'];
|
|
7077
|
-
filter?: InputMaybe<AgentWorkspaceHierarchyDefinitionFilterInput>;
|
|
7078
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
7079
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7080
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7081
|
-
};
|
|
7082
|
-
export declare type AgentWorkspacePageInfo = {
|
|
7083
|
-
__typename?: 'AgentWorkspacePageInfo';
|
|
7084
|
-
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7085
|
-
hasNextPage: Scalars['Boolean']['output'];
|
|
7086
|
-
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7087
|
-
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7088
|
-
};
|
|
7089
|
-
export declare type AgentWorkspacePaginationInput = {
|
|
7090
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
7091
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
7092
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7093
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
7094
|
-
};
|
|
7095
6847
|
export declare type AgentWorkspaceProjectDefaultAvailability = {
|
|
7096
6848
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
7097
6849
|
projectId: Scalars['ID']['output'];
|
|
@@ -7105,56 +6857,15 @@ export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
|
|
|
7105
6857
|
projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
7106
6858
|
success: Scalars['Boolean']['output'];
|
|
7107
6859
|
};
|
|
7108
|
-
export declare type AgentWorkspaceProjectSkill = {
|
|
7109
|
-
__typename?: 'AgentWorkspaceProjectSkill';
|
|
7110
|
-
id: Scalars['ID']['output'];
|
|
7111
|
-
projectId: Scalars['ID']['output'];
|
|
7112
|
-
skill: AgentWorkspaceSkill;
|
|
7113
|
-
status: AgentWorkspaceProjectSkillStatus;
|
|
7114
|
-
};
|
|
7115
|
-
export declare type AgentWorkspaceProjectSkillConnection = {
|
|
7116
|
-
__typename?: 'AgentWorkspaceProjectSkillConnection';
|
|
7117
|
-
edges?: Maybe<Array<AgentWorkspaceProjectSkillEdge>>;
|
|
7118
|
-
nodes?: Maybe<Array<Maybe<AgentWorkspaceProjectSkill>>>;
|
|
7119
|
-
pageInfo: AgentWorkspacePageInfo;
|
|
7120
|
-
};
|
|
7121
|
-
export declare type AgentWorkspaceProjectSkillEdge = {
|
|
7122
|
-
__typename?: 'AgentWorkspaceProjectSkillEdge';
|
|
7123
|
-
cursor: Scalars['String']['output'];
|
|
7124
|
-
node: AgentWorkspaceProjectSkill;
|
|
7125
|
-
};
|
|
7126
|
-
export declare type AgentWorkspaceProjectSkillFilterInput = {
|
|
7127
|
-
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7128
|
-
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7129
|
-
statuses?: InputMaybe<Array<AgentWorkspaceProjectSkillStatus>>;
|
|
7130
|
-
};
|
|
7131
|
-
export declare type AgentWorkspaceProjectSkillInput = {
|
|
7132
|
-
cloudId: Scalars['ID']['input'];
|
|
7133
|
-
id: Scalars['ID']['input'];
|
|
7134
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7135
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7136
|
-
};
|
|
7137
|
-
export declare enum AgentWorkspaceProjectSkillStatus {
|
|
7138
|
-
Active = "ACTIVE",
|
|
7139
|
-
Archived = "ARCHIVED"
|
|
7140
|
-
}
|
|
7141
|
-
export declare type AgentWorkspaceProjectSkillsInput = {
|
|
7142
|
-
cloudId: Scalars['ID']['input'];
|
|
7143
|
-
filter?: InputMaybe<AgentWorkspaceProjectSkillFilterInput>;
|
|
7144
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
7145
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7146
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7147
|
-
};
|
|
7148
|
-
export declare type AgentWorkspaceRankedAgent = {
|
|
7149
|
-
__typename?: 'AgentWorkspaceRankedAgent';
|
|
7150
|
-
agent: AgentWorkspaceAgent;
|
|
7151
|
-
totalProficiencyScore: Scalars['Int']['output'];
|
|
7152
|
-
userSkills: Array<AgentWorkspaceUserSkill>;
|
|
7153
|
-
};
|
|
7154
6860
|
export declare type AgentWorkspaceRecommendationError = {
|
|
7155
6861
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
7156
6862
|
message: Scalars['String']['output'];
|
|
7157
6863
|
};
|
|
6864
|
+
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
6865
|
+
originalAgentId: Scalars['ID']['input'];
|
|
6866
|
+
projectARI: Scalars['ID']['input'];
|
|
6867
|
+
scheduleId: Scalars['ID']['input'];
|
|
6868
|
+
};
|
|
7158
6869
|
export declare type AgentWorkspaceRecommendedAssigneesResponse = {
|
|
7159
6870
|
__typename?: 'AgentWorkspaceRecommendedAssigneesResponse';
|
|
7160
6871
|
errors?: Maybe<Array<AgentWorkspaceRecommendationError>>;
|
|
@@ -7191,20 +6902,18 @@ export declare type AgentWorkspaceResolvedDateRange = {
|
|
|
7191
6902
|
};
|
|
7192
6903
|
export declare type AgentWorkspaceRestoreSkillInput = {
|
|
7193
6904
|
cloudId: Scalars['ID']['input'];
|
|
7194
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7195
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7196
6905
|
skillId: Scalars['ID']['input'];
|
|
7197
6906
|
};
|
|
7198
6907
|
export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
7199
6908
|
__typename?: 'AgentWorkspaceRestoreSkillPayload';
|
|
7200
|
-
|
|
7201
|
-
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
6909
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7202
6910
|
success: Scalars['Boolean']['output'];
|
|
7203
6911
|
};
|
|
7204
6912
|
export declare type AgentWorkspaceSchedule = {
|
|
7205
6913
|
__typename?: 'AgentWorkspaceSchedule';
|
|
7206
6914
|
agents: Array<AgentWorkspaceAgent>;
|
|
7207
6915
|
cloudId: Scalars['ID']['output'];
|
|
6916
|
+
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7208
6917
|
createdAt: Scalars['DateTime']['output'];
|
|
7209
6918
|
createdBy: Scalars['String']['output'];
|
|
7210
6919
|
createdByUser?: Maybe<User>;
|
|
@@ -7401,45 +7110,65 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
7401
7110
|
};
|
|
7402
7111
|
export declare type AgentWorkspaceSkill = {
|
|
7403
7112
|
__typename?: 'AgentWorkspaceSkill';
|
|
7404
|
-
|
|
7113
|
+
assignedAgents?: Maybe<Array<AgentWorkspaceSkillAgentAssignment>>;
|
|
7114
|
+
category?: Maybe<AgentWorkspaceSkillCategory>;
|
|
7405
7115
|
description?: Maybe<Scalars['String']['output']>;
|
|
7406
7116
|
id: Scalars['ID']['output'];
|
|
7407
|
-
name
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7117
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7118
|
+
services?: Maybe<Array<AgentWorkspaceSkillServiceMapping>>;
|
|
7119
|
+
};
|
|
7120
|
+
export declare type AgentWorkspaceSkillAssignedAgentsArgs = {
|
|
7121
|
+
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7122
|
+
};
|
|
7123
|
+
export declare type AgentWorkspaceSkillServicesArgs = {
|
|
7124
|
+
projectAri: Scalars['ID']['input'];
|
|
7125
|
+
};
|
|
7126
|
+
export declare type AgentWorkspaceSkillAgentAssignment = {
|
|
7127
|
+
__typename?: 'AgentWorkspaceSkillAgentAssignment';
|
|
7128
|
+
skill: AgentWorkspaceSkill;
|
|
7129
|
+
userAri: Scalars['ID']['output'];
|
|
7130
|
+
};
|
|
7131
|
+
export declare type AgentWorkspaceSkillCategory = {
|
|
7132
|
+
__typename?: 'AgentWorkspaceSkillCategory';
|
|
7133
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7134
|
+
id: Scalars['ID']['output'];
|
|
7135
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7136
|
+
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7137
|
+
};
|
|
7138
|
+
export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
7139
|
+
__typename?: 'AgentWorkspaceSkillCategoryConnection';
|
|
7140
|
+
edges?: Maybe<Array<AgentWorkspaceSkillCategoryEdge>>;
|
|
7141
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7142
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkillCategory>>>;
|
|
7143
|
+
pageInfo: PageInfo;
|
|
7144
|
+
};
|
|
7145
|
+
export declare type AgentWorkspaceSkillCategoryCreateInput = {
|
|
7146
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7147
|
+
name: Scalars['String']['input'];
|
|
7148
|
+
};
|
|
7149
|
+
export declare type AgentWorkspaceSkillCategoryEdge = {
|
|
7150
|
+
__typename?: 'AgentWorkspaceSkillCategoryEdge';
|
|
7151
|
+
cursor: Scalars['String']['output'];
|
|
7152
|
+
node: AgentWorkspaceSkillCategory;
|
|
7411
7153
|
};
|
|
7412
7154
|
export declare type AgentWorkspaceSkillConnection = {
|
|
7413
7155
|
__typename?: 'AgentWorkspaceSkillConnection';
|
|
7414
7156
|
edges?: Maybe<Array<AgentWorkspaceSkillEdge>>;
|
|
7157
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7415
7158
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkill>>>;
|
|
7416
|
-
pageInfo:
|
|
7159
|
+
pageInfo: PageInfo;
|
|
7417
7160
|
};
|
|
7418
7161
|
export declare type AgentWorkspaceSkillCreateInput = {
|
|
7419
|
-
|
|
7162
|
+
category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
|
|
7163
|
+
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
7420
7164
|
cloudId: Scalars['ID']['input'];
|
|
7421
7165
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7422
7166
|
name: Scalars['String']['input'];
|
|
7423
|
-
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7424
7167
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7425
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7426
7168
|
};
|
|
7427
7169
|
export declare type AgentWorkspaceSkillCreatePayload = {
|
|
7428
7170
|
__typename?: 'AgentWorkspaceSkillCreatePayload';
|
|
7429
|
-
|
|
7430
|
-
skill?: Maybe<AgentWorkspaceSkill>;
|
|
7431
|
-
success: Scalars['Boolean']['output'];
|
|
7432
|
-
};
|
|
7433
|
-
export declare type AgentWorkspaceSkillDeleteInput = {
|
|
7434
|
-
cloudId: Scalars['ID']['input'];
|
|
7435
|
-
id: Scalars['ID']['input'];
|
|
7436
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7437
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7438
|
-
};
|
|
7439
|
-
export declare type AgentWorkspaceSkillDeletePayload = {
|
|
7440
|
-
__typename?: 'AgentWorkspaceSkillDeletePayload';
|
|
7441
|
-
deletedSkillId?: Maybe<Scalars['ID']['output']>;
|
|
7442
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7171
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7443
7172
|
success: Scalars['Boolean']['output'];
|
|
7444
7173
|
};
|
|
7445
7174
|
export declare type AgentWorkspaceSkillEdge = {
|
|
@@ -7447,55 +7176,10 @@ export declare type AgentWorkspaceSkillEdge = {
|
|
|
7447
7176
|
cursor: Scalars['String']['output'];
|
|
7448
7177
|
node: AgentWorkspaceSkill;
|
|
7449
7178
|
};
|
|
7450
|
-
export declare type
|
|
7451
|
-
|
|
7452
|
-
|
|
7453
|
-
|
|
7454
|
-
};
|
|
7455
|
-
export declare type AgentWorkspaceSkillGapsInput = {
|
|
7456
|
-
cloudId: Scalars['ID']['input'];
|
|
7457
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
7458
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7459
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7460
|
-
};
|
|
7461
|
-
export declare type AgentWorkspaceSkillInput = {
|
|
7462
|
-
cloudId: Scalars['ID']['input'];
|
|
7463
|
-
id: Scalars['ID']['input'];
|
|
7464
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7465
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7466
|
-
};
|
|
7467
|
-
export declare enum AgentWorkspaceSkillMatchType {
|
|
7468
|
-
All = "ALL",
|
|
7469
|
-
Any = "ANY"
|
|
7470
|
-
}
|
|
7471
|
-
export declare enum AgentWorkspaceSkillRequirementEnum {
|
|
7472
|
-
Optional = "OPTIONAL",
|
|
7473
|
-
Required = "REQUIRED"
|
|
7474
|
-
}
|
|
7475
|
-
export declare type AgentWorkspaceSkillRequirementInput = {
|
|
7476
|
-
minProficiencyLevel: Scalars['Int']['input'];
|
|
7477
|
-
skillId: Scalars['ID']['input'];
|
|
7478
|
-
};
|
|
7479
|
-
export declare type AgentWorkspaceSkillUpdateInput = {
|
|
7480
|
-
cloudId: Scalars['ID']['input'];
|
|
7481
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
7482
|
-
id: Scalars['ID']['input'];
|
|
7483
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
7484
|
-
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7485
|
-
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7486
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7487
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7488
|
-
};
|
|
7489
|
-
export declare type AgentWorkspaceSkillUpdatePayload = {
|
|
7490
|
-
__typename?: 'AgentWorkspaceSkillUpdatePayload';
|
|
7491
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7492
|
-
skill?: Maybe<AgentWorkspaceSkill>;
|
|
7493
|
-
success: Scalars['Boolean']['output'];
|
|
7494
|
-
};
|
|
7495
|
-
export declare type AgentWorkspaceSkillsInput = {
|
|
7496
|
-
cloudId: Scalars['ID']['input'];
|
|
7497
|
-
filter?: InputMaybe<AgentWorkspaceSkillFilterInput>;
|
|
7498
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
7179
|
+
export declare type AgentWorkspaceSkillServiceMapping = {
|
|
7180
|
+
__typename?: 'AgentWorkspaceSkillServiceMapping';
|
|
7181
|
+
serviceId: Scalars['ID']['output'];
|
|
7182
|
+
skill: AgentWorkspaceSkill;
|
|
7499
7183
|
};
|
|
7500
7184
|
export declare type AgentWorkspaceSmartRoutingConfig = {
|
|
7501
7185
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
@@ -7515,18 +7199,6 @@ export declare type AgentWorkspaceStartBulkImportPayload = {
|
|
|
7515
7199
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
7516
7200
|
status?: Maybe<AgentWorkspaceBulkImportJobStatus>;
|
|
7517
7201
|
};
|
|
7518
|
-
export declare type AgentWorkspaceSubscribeSkillInput = {
|
|
7519
|
-
cloudId: Scalars['ID']['input'];
|
|
7520
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7521
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7522
|
-
skillId: Scalars['ID']['input'];
|
|
7523
|
-
};
|
|
7524
|
-
export declare type AgentWorkspaceSubscribeSkillPayload = {
|
|
7525
|
-
__typename?: 'AgentWorkspaceSubscribeSkillPayload';
|
|
7526
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7527
|
-
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
7528
|
-
success: Scalars['Boolean']['output'];
|
|
7529
|
-
};
|
|
7530
7202
|
export declare type AgentWorkspaceTeamCapacitiesInput = {
|
|
7531
7203
|
cloudId: Scalars['ID']['input'];
|
|
7532
7204
|
projectKey: Scalars['String']['input'];
|
|
@@ -7557,7 +7229,6 @@ export declare type AgentWorkspaceTeamLinkFailure = {
|
|
|
7557
7229
|
};
|
|
7558
7230
|
export declare type AgentWorkspaceTeamSchedules = {
|
|
7559
7231
|
__typename?: 'AgentWorkspaceTeamSchedules';
|
|
7560
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7561
7232
|
hasSchedules: Scalars['Boolean']['output'];
|
|
7562
7233
|
schedules: Array<AgentWorkspaceSchedule>;
|
|
7563
7234
|
team?: Maybe<TeamV2>;
|
|
@@ -7619,52 +7290,6 @@ export declare type AgentWorkspaceTimeRange = {
|
|
|
7619
7290
|
endTime: Scalars['DateTime']['output'];
|
|
7620
7291
|
startTime: Scalars['DateTime']['output'];
|
|
7621
7292
|
};
|
|
7622
|
-
export declare type AgentWorkspaceUnsubscribeSkillInput = {
|
|
7623
|
-
cloudId: Scalars['ID']['input'];
|
|
7624
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7625
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7626
|
-
skillId: Scalars['ID']['input'];
|
|
7627
|
-
};
|
|
7628
|
-
export declare type AgentWorkspaceUnsubscribeSkillPayload = {
|
|
7629
|
-
__typename?: 'AgentWorkspaceUnsubscribeSkillPayload';
|
|
7630
|
-
deletedProjectSkillId?: Maybe<Scalars['ID']['output']>;
|
|
7631
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7632
|
-
success: Scalars['Boolean']['output'];
|
|
7633
|
-
};
|
|
7634
|
-
export declare type AgentWorkspaceUpdateCatalogConfigInput = {
|
|
7635
|
-
cloudId: Scalars['ID']['input'];
|
|
7636
|
-
id: Scalars['ID']['input'];
|
|
7637
|
-
minSkillProficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
7638
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7639
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7640
|
-
skillRequirement?: InputMaybe<AgentWorkspaceSkillRequirementEnum>;
|
|
7641
|
-
};
|
|
7642
|
-
export declare type AgentWorkspaceUpdateCatalogInput = {
|
|
7643
|
-
cloudId: Scalars['ID']['input'];
|
|
7644
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
7645
|
-
id: Scalars['ID']['input'];
|
|
7646
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
7647
|
-
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7648
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7649
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7650
|
-
thresholdLevels?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
7651
|
-
};
|
|
7652
|
-
export declare type AgentWorkspaceUpdateCatalogTypeInput = {
|
|
7653
|
-
cloudId: Scalars['ID']['input'];
|
|
7654
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
7655
|
-
id: Scalars['ID']['input'];
|
|
7656
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
7657
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7658
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7659
|
-
};
|
|
7660
|
-
export declare type AgentWorkspaceUpdateHierarchyDefinitionInput = {
|
|
7661
|
-
cloudId: Scalars['ID']['input'];
|
|
7662
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
7663
|
-
id: Scalars['ID']['input'];
|
|
7664
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
7665
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7666
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7667
|
-
};
|
|
7668
7293
|
export declare type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
7669
7294
|
cloudId: Scalars['ID']['input'];
|
|
7670
7295
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -7694,20 +7319,6 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
|
7694
7319
|
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
7695
7320
|
success: Scalars['Boolean']['output'];
|
|
7696
7321
|
};
|
|
7697
|
-
export declare type AgentWorkspaceUpdateSkillProficiencyInput = {
|
|
7698
|
-
cloudId: Scalars['ID']['input'];
|
|
7699
|
-
proficiencyLevel: Scalars['Int']['input'];
|
|
7700
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7701
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7702
|
-
skillId: Scalars['ID']['input'];
|
|
7703
|
-
userId: Scalars['ID']['input'];
|
|
7704
|
-
};
|
|
7705
|
-
export declare type AgentWorkspaceUpdateSkillProficiencyPayload = {
|
|
7706
|
-
__typename?: 'AgentWorkspaceUpdateSkillProficiencyPayload';
|
|
7707
|
-
error?: Maybe<Scalars['String']['output']>;
|
|
7708
|
-
success: Scalars['Boolean']['output'];
|
|
7709
|
-
userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
7710
|
-
};
|
|
7711
7322
|
export declare type AgentWorkspaceUpdateSmartRoutingConfigInput = {
|
|
7712
7323
|
enabled: Scalars['Boolean']['input'];
|
|
7713
7324
|
projectAri: Scalars['ID']['input'];
|
|
@@ -7717,62 +7328,6 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
7717
7328
|
smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
|
|
7718
7329
|
success: Scalars['Boolean']['output'];
|
|
7719
7330
|
};
|
|
7720
|
-
export declare type AgentWorkspaceUserConnection = {
|
|
7721
|
-
__typename?: 'AgentWorkspaceUserConnection';
|
|
7722
|
-
edges?: Maybe<Array<AgentWorkspaceUserEdge>>;
|
|
7723
|
-
nodes?: Maybe<Array<Maybe<AgentWorkspaceAgent>>>;
|
|
7724
|
-
pageInfo: AgentWorkspacePageInfo;
|
|
7725
|
-
};
|
|
7726
|
-
export declare type AgentWorkspaceUserEdge = {
|
|
7727
|
-
__typename?: 'AgentWorkspaceUserEdge';
|
|
7728
|
-
cursor: Scalars['String']['output'];
|
|
7729
|
-
node: AgentWorkspaceAgent;
|
|
7730
|
-
};
|
|
7731
|
-
export declare type AgentWorkspaceUserSkill = {
|
|
7732
|
-
__typename?: 'AgentWorkspaceUserSkill';
|
|
7733
|
-
id: Scalars['ID']['output'];
|
|
7734
|
-
proficiencyLevel: Scalars['Int']['output'];
|
|
7735
|
-
skill?: Maybe<AgentWorkspaceSkill>;
|
|
7736
|
-
user?: Maybe<AgentWorkspaceAgent>;
|
|
7737
|
-
};
|
|
7738
|
-
export declare type AgentWorkspaceUserSkillConnection = {
|
|
7739
|
-
__typename?: 'AgentWorkspaceUserSkillConnection';
|
|
7740
|
-
edges?: Maybe<Array<AgentWorkspaceUserSkillEdge>>;
|
|
7741
|
-
nodes?: Maybe<Array<Maybe<AgentWorkspaceUserSkill>>>;
|
|
7742
|
-
pageInfo: AgentWorkspacePageInfo;
|
|
7743
|
-
};
|
|
7744
|
-
export declare type AgentWorkspaceUserSkillEdge = {
|
|
7745
|
-
__typename?: 'AgentWorkspaceUserSkillEdge';
|
|
7746
|
-
cursor: Scalars['String']['output'];
|
|
7747
|
-
node: AgentWorkspaceUserSkill;
|
|
7748
|
-
};
|
|
7749
|
-
export declare type AgentWorkspaceUserSkillFilterInput = {
|
|
7750
|
-
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7751
|
-
proficiencyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
7752
|
-
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7753
|
-
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7754
|
-
};
|
|
7755
|
-
export declare type AgentWorkspaceUserSkillInput = {
|
|
7756
|
-
cloudId: Scalars['ID']['input'];
|
|
7757
|
-
id: Scalars['ID']['input'];
|
|
7758
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7759
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7760
|
-
};
|
|
7761
|
-
export declare type AgentWorkspaceUserSkillsInput = {
|
|
7762
|
-
cloudId: Scalars['ID']['input'];
|
|
7763
|
-
filter?: InputMaybe<AgentWorkspaceUserSkillFilterInput>;
|
|
7764
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
7765
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7766
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7767
|
-
};
|
|
7768
|
-
export declare type AgentWorkspaceUsersBySkillsInput = {
|
|
7769
|
-
cloudId: Scalars['ID']['input'];
|
|
7770
|
-
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
7771
|
-
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7772
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7773
|
-
skillIds: Array<Scalars['ID']['input']>;
|
|
7774
|
-
skillMatchType?: InputMaybe<AgentWorkspaceSkillMatchType>;
|
|
7775
|
-
};
|
|
7776
7331
|
export declare type AiCoreApiCsvExportInput = {
|
|
7777
7332
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7778
7333
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9805,6 +9360,13 @@ export declare type AssetsBundle = {
|
|
|
9805
9360
|
schemas?: Maybe<Array<AssetsCdmSchema>>;
|
|
9806
9361
|
type: AssetsBundleType;
|
|
9807
9362
|
};
|
|
9363
|
+
export declare type AssetsBundleInstantiation = {
|
|
9364
|
+
__typename?: 'AssetsBundleInstantiation';
|
|
9365
|
+
bundle: AssetsBundle;
|
|
9366
|
+
id: Scalars['ID']['output'];
|
|
9367
|
+
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
9368
|
+
};
|
|
9369
|
+
export declare type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
9808
9370
|
export declare type AssetsBundleResult = AssetsBundle | QueryError;
|
|
9809
9371
|
export declare enum AssetsBundleType {
|
|
9810
9372
|
Cdm = "CDM",
|
|
@@ -10110,6 +9672,10 @@ export declare type AssetsDmCreateDataSourceTypeResponse = {
|
|
|
10110
9672
|
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
10111
9673
|
message?: Maybe<Scalars['String']['output']>;
|
|
10112
9674
|
};
|
|
9675
|
+
export declare type AssetsDmCreateDateFormatInput = {
|
|
9676
|
+
format: Scalars['String']['input'];
|
|
9677
|
+
name: Scalars['String']['input'];
|
|
9678
|
+
};
|
|
10113
9679
|
export declare type AssetsDmCreateDefaultCleansingRuleInput = {
|
|
10114
9680
|
dataSourceTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
10115
9681
|
defFunctionId: Scalars['ID']['input'];
|
|
@@ -10899,6 +10465,11 @@ export declare type AssetsDmDataSourcesListArgs = {
|
|
|
10899
10465
|
sortBy?: InputMaybe<AssetsDmDataSourceSort>;
|
|
10900
10466
|
workspaceId: Scalars['ID']['input'];
|
|
10901
10467
|
};
|
|
10468
|
+
export declare type AssetsDmDateFormatMutationResponse = {
|
|
10469
|
+
__typename?: 'AssetsDMDateFormatMutationResponse';
|
|
10470
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
10471
|
+
message: Scalars['String']['output'];
|
|
10472
|
+
};
|
|
10902
10473
|
export declare type AssetsDmDateFormats = {
|
|
10903
10474
|
__typename?: 'AssetsDMDateFormats';
|
|
10904
10475
|
createdBy: Scalars['String']['output'];
|
|
@@ -11182,6 +10753,11 @@ export declare type AssetsDmEditDataDictionaryResponse = {
|
|
|
11182
10753
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11183
10754
|
message: Scalars['String']['output'];
|
|
11184
10755
|
};
|
|
10756
|
+
export declare type AssetsDmEditDateFormatInput = {
|
|
10757
|
+
dateFormatId: Scalars['ID']['input'];
|
|
10758
|
+
format: Scalars['String']['input'];
|
|
10759
|
+
name: Scalars['String']['input'];
|
|
10760
|
+
};
|
|
11185
10761
|
export declare type AssetsDmEditDefaultAttributeMappingInput = {
|
|
11186
10762
|
columnType: AssetsDmDefaultAttributeMappingColumnType;
|
|
11187
10763
|
dataSourceTypeId: Scalars['ID']['input'];
|
|
@@ -12910,6 +12486,7 @@ export declare type AssetsVerticalDepreciationRuleAssetTypesArgs = {
|
|
|
12910
12486
|
export declare type AssetsVerticalDepreciationRuleAssetType = {
|
|
12911
12487
|
__typename?: 'AssetsVerticalDepreciationRuleAssetType';
|
|
12912
12488
|
acquisitionCostObjTypeAttributeId: Scalars['ID']['output'];
|
|
12489
|
+
acquisitionDateObjTypeAttributeId: Scalars['ID']['output'];
|
|
12913
12490
|
auditInfo: AssetsVerticalAuditInfo;
|
|
12914
12491
|
bookValueObjTypeAttributeId: Scalars['ID']['output'];
|
|
12915
12492
|
depreciationRuleId: Scalars['ID']['output'];
|
|
@@ -12929,6 +12506,7 @@ export declare type AssetsVerticalDepreciationRuleAssetTypeEdge = {
|
|
|
12929
12506
|
};
|
|
12930
12507
|
export declare type AssetsVerticalDepreciationRuleAssetTypeInput = {
|
|
12931
12508
|
acquisitionCostObjTypeAttributeId: Scalars['ID']['input'];
|
|
12509
|
+
acquisitionDateObjTypeAttributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
12932
12510
|
bookValueObjTypeAttributeId: Scalars['ID']['input'];
|
|
12933
12511
|
objSchemaId: Scalars['ID']['input'];
|
|
12934
12512
|
objTypeId: Scalars['ID']['input'];
|
|
@@ -13075,6 +12653,10 @@ export declare type AssetsVerticalInventoryErrorExtension = QueryErrorExtension
|
|
|
13075
12653
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
13076
12654
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
13077
12655
|
};
|
|
12656
|
+
export declare type AssetsVerticalItamAttributes = {
|
|
12657
|
+
__typename?: 'AssetsVerticalItamAttributes';
|
|
12658
|
+
attributes?: Maybe<Array<Maybe<AssetsVerticalObjectTypeAttribute>>>;
|
|
12659
|
+
};
|
|
13078
12660
|
export declare type AssetsVerticalItamObjects = {
|
|
13079
12661
|
__typename?: 'AssetsVerticalItamObjects';
|
|
13080
12662
|
attributes?: Maybe<Array<Maybe<AssetsVerticalAttributeOnObject>>>;
|
|
@@ -13150,6 +12732,7 @@ export declare type AssetsVerticalKeyValueInput = {
|
|
|
13150
12732
|
key: Scalars['String']['input'];
|
|
13151
12733
|
value: Scalars['String']['input'];
|
|
13152
12734
|
};
|
|
12735
|
+
export declare type AssetsVerticalModelItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
|
|
13153
12736
|
export declare type AssetsVerticalModelObjects = AssetsVerticalObjects & {
|
|
13154
12737
|
__typename?: 'AssetsVerticalModelObjects';
|
|
13155
12738
|
itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
|
|
@@ -13318,6 +12901,26 @@ export declare type AssetsVerticalStatusCount = {
|
|
|
13318
12901
|
count?: Maybe<Scalars['Int']['output']>;
|
|
13319
12902
|
statusKey?: Maybe<Scalars['String']['output']>;
|
|
13320
12903
|
};
|
|
12904
|
+
export declare type AssetsVerticalStockroomItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
|
|
12905
|
+
export declare type AssetsVerticalStockroomObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
12906
|
+
export declare type AssetsVerticalStockroomObjects = AssetsVerticalObjects & {
|
|
12907
|
+
__typename?: 'AssetsVerticalStockroomObjects';
|
|
12908
|
+
itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
|
|
12909
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
12910
|
+
objects?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
12911
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
12912
|
+
pageInfo?: Maybe<PageInfo>;
|
|
12913
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
12914
|
+
};
|
|
12915
|
+
export declare type AssetsVerticalStockroomObjectsInput = {
|
|
12916
|
+
filters?: InputMaybe<Array<Array<AssetsVerticalObjectsFilterCondition>>>;
|
|
12917
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
12918
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
12919
|
+
orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
|
|
12920
|
+
orderKey?: InputMaybe<Scalars['String']['input']>;
|
|
12921
|
+
workspaceId: Scalars['ID']['input'];
|
|
12922
|
+
};
|
|
12923
|
+
export declare type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
13321
12924
|
export declare type AssetsVerticalUpdateDepreciationRuleInput = {
|
|
13322
12925
|
assetTypes?: InputMaybe<Array<AssetsVerticalDepreciationRuleAssetTypeInput>>;
|
|
13323
12926
|
cloudId: Scalars['ID']['input'];
|
|
@@ -14683,6 +14286,19 @@ export declare enum CcpAllowancePoolAllocationDetailsType {
|
|
|
14683
14286
|
Custom = "CUSTOM",
|
|
14684
14287
|
Default = "DEFAULT"
|
|
14685
14288
|
}
|
|
14289
|
+
export declare type CcpAllowancePoolAllocationUpdateInput = {
|
|
14290
|
+
allocationId: Scalars['ID']['input'];
|
|
14291
|
+
billingEntity?: InputMaybe<Scalars['String']['input']>;
|
|
14292
|
+
enforcementMode?: InputMaybe<CcpLatestAllowanceEnforcementModeType>;
|
|
14293
|
+
overageCap?: InputMaybe<Scalars['Float']['input']>;
|
|
14294
|
+
poolShare?: InputMaybe<Scalars['Float']['input']>;
|
|
14295
|
+
};
|
|
14296
|
+
export declare type CcpAllowancePoolAllocationUpdateResult = {
|
|
14297
|
+
__typename?: 'CcpAllowancePoolAllocationUpdateResult';
|
|
14298
|
+
allocationId?: Maybe<Scalars['ID']['output']>;
|
|
14299
|
+
poolId?: Maybe<Scalars['ID']['output']>;
|
|
14300
|
+
transactionId?: Maybe<Scalars['ID']['output']>;
|
|
14301
|
+
};
|
|
14686
14302
|
export declare type CcpAllowancePoolAllocationsResponse = {
|
|
14687
14303
|
__typename?: 'CcpAllowancePoolAllocationsResponse';
|
|
14688
14304
|
allowance?: Maybe<Scalars['Float']['output']>;
|
|
@@ -14753,6 +14369,133 @@ export declare enum CcpBenefitValueAppliedOn {
|
|
|
14753
14369
|
Total = "TOTAL",
|
|
14754
14370
|
Upsell = "UPSELL"
|
|
14755
14371
|
}
|
|
14372
|
+
export declare type CcpBillEstimateAdjustmentV3 = {
|
|
14373
|
+
__typename?: 'CcpBillEstimateAdjustmentV3';
|
|
14374
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
14375
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
14376
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
14377
|
+
promotion?: Maybe<CcpPromotion>;
|
|
14378
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
14379
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14380
|
+
};
|
|
14381
|
+
export declare type CcpBillEstimateBillToInput = {
|
|
14382
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
14383
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14384
|
+
};
|
|
14385
|
+
export declare type CcpBillEstimateChargeQuantityInput = {
|
|
14386
|
+
chargeElement: Scalars['String']['input'];
|
|
14387
|
+
lastUpdatedAt?: InputMaybe<Scalars['Float']['input']>;
|
|
14388
|
+
quantity: Scalars['Float']['input'];
|
|
14389
|
+
};
|
|
14390
|
+
export declare type CcpBillEstimateChargeQuantityV3 = {
|
|
14391
|
+
__typename?: 'CcpBillEstimateChargeQuantityV3';
|
|
14392
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
14393
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
14394
|
+
};
|
|
14395
|
+
export declare type CcpBillEstimateChargeQuantityV3Input = {
|
|
14396
|
+
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
14397
|
+
quantity?: InputMaybe<Scalars['Float']['input']>;
|
|
14398
|
+
};
|
|
14399
|
+
export declare type CcpBillEstimateEndsAtDurationInput = {
|
|
14400
|
+
interval?: InputMaybe<Scalars['String']['input']>;
|
|
14401
|
+
intervalCount?: InputMaybe<Scalars['Int']['input']>;
|
|
14402
|
+
};
|
|
14403
|
+
export declare type CcpBillEstimateEndsAtInput = {
|
|
14404
|
+
duration?: InputMaybe<CcpBillEstimateEndsAtDurationInput>;
|
|
14405
|
+
timestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
14406
|
+
};
|
|
14407
|
+
export declare type CcpBillEstimateInvoiceSettingsInput = {
|
|
14408
|
+
preventUpcomingInvoice: Scalars['Boolean']['input'];
|
|
14409
|
+
};
|
|
14410
|
+
export declare type CcpBillEstimateItemV3 = {
|
|
14411
|
+
__typename?: 'CcpBillEstimateItemV3';
|
|
14412
|
+
accruedCharges?: Maybe<Scalars['Boolean']['output']>;
|
|
14413
|
+
adjustments?: Maybe<Array<Maybe<CcpBillEstimateAdjustmentV3>>>;
|
|
14414
|
+
billPeriod?: Maybe<CcpBillEstimatePeriodV3>;
|
|
14415
|
+
chargeQuantity?: Maybe<CcpBillEstimateChargeQuantityV3>;
|
|
14416
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14417
|
+
margins?: Maybe<Array<Maybe<CcpBillEstimateMarginV3>>>;
|
|
14418
|
+
offering?: Maybe<CcpOffering>;
|
|
14419
|
+
orderId?: Maybe<Scalars['ID']['output']>;
|
|
14420
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
14421
|
+
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
14422
|
+
selfReference?: Maybe<Scalars['Boolean']['output']>;
|
|
14423
|
+
subtotal?: Maybe<Scalars['Float']['output']>;
|
|
14424
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14425
|
+
};
|
|
14426
|
+
export declare type CcpBillEstimateMarginV3 = {
|
|
14427
|
+
__typename?: 'CcpBillEstimateMarginV3';
|
|
14428
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
14429
|
+
percent?: Maybe<Scalars['Float']['output']>;
|
|
14430
|
+
promoCode?: Maybe<Scalars['String']['output']>;
|
|
14431
|
+
promotion?: Maybe<CcpPromotion>;
|
|
14432
|
+
reasonCode?: Maybe<Scalars['String']['output']>;
|
|
14433
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
14434
|
+
};
|
|
14435
|
+
export declare type CcpBillEstimatePauseBillingInput = {
|
|
14436
|
+
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
14437
|
+
resumesAt?: InputMaybe<Scalars['Float']['input']>;
|
|
14438
|
+
};
|
|
14439
|
+
export declare type CcpBillEstimatePeriodV3 = {
|
|
14440
|
+
__typename?: 'CcpBillEstimatePeriodV3';
|
|
14441
|
+
end?: Maybe<Scalars['Float']['output']>;
|
|
14442
|
+
start?: Maybe<Scalars['Float']['output']>;
|
|
14443
|
+
};
|
|
14444
|
+
export declare type CcpBillEstimatePhaseV3Input = {
|
|
14445
|
+
chargeDetails?: InputMaybe<CcpBillEstimateRequestChargeDetailsInput>;
|
|
14446
|
+
endsAt?: InputMaybe<Scalars['Float']['input']>;
|
|
14447
|
+
phaseListPrice?: InputMaybe<Scalars['Float']['input']>;
|
|
14448
|
+
startsAt?: InputMaybe<Scalars['Float']['input']>;
|
|
14449
|
+
trial?: InputMaybe<CcpBillEstimateTrialInput>;
|
|
14450
|
+
};
|
|
14451
|
+
export declare type CcpBillEstimatePrebillingConfigurationInput = {
|
|
14452
|
+
billTo?: InputMaybe<CcpBillEstimateBillToInput>;
|
|
14453
|
+
};
|
|
14454
|
+
export declare type CcpBillEstimatePromotionExtendedInput = {
|
|
14455
|
+
promotionCode?: InputMaybe<Scalars['String']['input']>;
|
|
14456
|
+
promotionId?: InputMaybe<Scalars['ID']['input']>;
|
|
14457
|
+
promotionInstanceId?: InputMaybe<Scalars['ID']['input']>;
|
|
14458
|
+
promotionInstanceReferenceId?: InputMaybe<Scalars['ID']['input']>;
|
|
14459
|
+
};
|
|
14460
|
+
export declare enum CcpBillEstimateProrationBehaviour {
|
|
14461
|
+
AlwaysInvoice = "ALWAYS_INVOICE",
|
|
14462
|
+
None = "NONE"
|
|
14463
|
+
}
|
|
14464
|
+
export declare type CcpBillEstimateRequestChargeDetailsInput = {
|
|
14465
|
+
chargeQuantities?: InputMaybe<Array<InputMaybe<CcpBillEstimateChargeQuantityInput>>>;
|
|
14466
|
+
offeringId?: InputMaybe<Scalars['ID']['input']>;
|
|
14467
|
+
pricingPlanId?: InputMaybe<Scalars['ID']['input']>;
|
|
14468
|
+
promotions?: InputMaybe<Array<InputMaybe<CcpBillEstimatePromotionExtendedInput>>>;
|
|
14469
|
+
};
|
|
14470
|
+
export declare type CcpBillEstimateScheduledChangesV3Input = {
|
|
14471
|
+
phases?: InputMaybe<Array<InputMaybe<CcpBillEstimatePhaseV3Input>>>;
|
|
14472
|
+
};
|
|
14473
|
+
export declare type CcpBillEstimateTrialInput = {
|
|
14474
|
+
chargeQuantities?: InputMaybe<Array<InputMaybe<CcpBillEstimateChargeQuantityV3Input>>>;
|
|
14475
|
+
endBehaviour?: InputMaybe<Scalars['String']['input']>;
|
|
14476
|
+
endTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
14477
|
+
};
|
|
14478
|
+
export declare type CcpBillEstimateV3 = {
|
|
14479
|
+
__typename?: 'CcpBillEstimateV3';
|
|
14480
|
+
created?: Maybe<Scalars['Float']['output']>;
|
|
14481
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
14482
|
+
entitlement?: Maybe<CcpEntitlement>;
|
|
14483
|
+
items?: Maybe<Array<Maybe<CcpBillEstimateItemV3>>>;
|
|
14484
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
14485
|
+
};
|
|
14486
|
+
export declare type CcpBillEstimateV3Input = {
|
|
14487
|
+
billingAnchorTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
14488
|
+
chargeDetails?: InputMaybe<CcpBillEstimateRequestChargeDetailsInput>;
|
|
14489
|
+
createRequest?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14490
|
+
endsAt?: InputMaybe<CcpBillEstimateEndsAtInput>;
|
|
14491
|
+
invoiceSettings?: InputMaybe<CcpBillEstimateInvoiceSettingsInput>;
|
|
14492
|
+
pauseBilling?: InputMaybe<CcpBillEstimatePauseBillingInput>;
|
|
14493
|
+
preBillingConfiguration?: InputMaybe<CcpBillEstimatePrebillingConfigurationInput>;
|
|
14494
|
+
prorationBehaviour?: InputMaybe<CcpBillEstimateProrationBehaviour>;
|
|
14495
|
+
scheduledChanges?: InputMaybe<CcpBillEstimateScheduledChangesV3Input>;
|
|
14496
|
+
startTimestamp?: InputMaybe<Scalars['Float']['input']>;
|
|
14497
|
+
trial?: InputMaybe<CcpBillEstimateTrialInput>;
|
|
14498
|
+
};
|
|
14756
14499
|
export declare type CcpBillToParty = {
|
|
14757
14500
|
__typename?: 'CcpBillToParty';
|
|
14758
14501
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -15060,6 +14803,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
15060
14803
|
__typename?: 'CcpEntitlement';
|
|
15061
14804
|
allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
|
|
15062
14805
|
allowancePoolMembers?: Maybe<Array<Maybe<CcpAllowancePoolMembersResponse>>>;
|
|
14806
|
+
billEstimateV3?: Maybe<CcpBillEstimateV3>;
|
|
15063
14807
|
changeReason?: Maybe<Scalars['String']['output']>;
|
|
15064
14808
|
chargeElementLatestAllowancesDetails?: Maybe<CcpChargeElementLatestAllowancesResult>;
|
|
15065
14809
|
childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -15108,6 +14852,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
15108
14852
|
export declare type CcpEntitlementAllowancePoolMembersArgs = {
|
|
15109
14853
|
poolId: Scalars['ID']['input'];
|
|
15110
14854
|
};
|
|
14855
|
+
export declare type CcpEntitlementBillEstimateV3Args = {
|
|
14856
|
+
input?: InputMaybe<CcpBillEstimateV3Input>;
|
|
14857
|
+
};
|
|
15111
14858
|
export declare type CcpEntitlementChargeElementLatestAllowancesDetailsArgs = {
|
|
15112
14859
|
input: CcpChargeElementLatestAllowancesInput;
|
|
15113
14860
|
};
|
|
@@ -17208,6 +16955,7 @@ export declare type ChannelPlatformSendOtpResponse = {
|
|
|
17208
16955
|
};
|
|
17209
16956
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
17210
16957
|
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
16958
|
+
customerIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
17211
16959
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
17212
16960
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
17213
16961
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -27226,6 +26974,11 @@ export declare type ConfluenceApprovalAgentPayload = Payload & {
|
|
|
27226
26974
|
errors: Array<MutationError>;
|
|
27227
26975
|
success: Scalars['Boolean']['output'];
|
|
27228
26976
|
};
|
|
26977
|
+
export declare type ConfluenceApprovalReviewerConfig = {
|
|
26978
|
+
__typename?: 'ConfluenceApprovalReviewerConfig';
|
|
26979
|
+
hasReviewers: Scalars['Boolean']['output'];
|
|
26980
|
+
reviewers: Array<Maybe<ConfluenceSpaceApprovalReviewerEntry>>;
|
|
26981
|
+
};
|
|
27229
26982
|
export declare enum ConfluenceApprovalTransitionType {
|
|
27230
26983
|
Directed = "DIRECTED",
|
|
27231
26984
|
Initial = "INITIAL"
|
|
@@ -27840,6 +27593,29 @@ export declare type ConfluenceContentApprovalReviewerInput = {
|
|
|
27840
27593
|
principalId: Scalars['String']['input'];
|
|
27841
27594
|
principalType: ConfluencePrincipalType;
|
|
27842
27595
|
};
|
|
27596
|
+
export declare type ConfluenceContentApprovalsSpaceSettingConfig = {
|
|
27597
|
+
__typename?: 'ConfluenceContentApprovalsSpaceSettingConfig';
|
|
27598
|
+
defaultApprovalReviewerConfig: ConfluenceApprovalReviewerConfig;
|
|
27599
|
+
disallowFirstPublish: Scalars['Boolean']['output'];
|
|
27600
|
+
enabled: Scalars['Boolean']['output'];
|
|
27601
|
+
enforcedApprovalReviewerConfig: ConfluenceApprovalReviewerConfig;
|
|
27602
|
+
};
|
|
27603
|
+
export declare type ConfluenceContentApprovalsSpaceSettingConfigInput = {
|
|
27604
|
+
defaultReviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
|
|
27605
|
+
disallowFirstPublish?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27606
|
+
enabled: Scalars['Boolean']['input'];
|
|
27607
|
+
enforcedReviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
|
|
27608
|
+
};
|
|
27609
|
+
export declare type ConfluenceContentApprovalsSpaceSettingConfigPayload = Payload & {
|
|
27610
|
+
__typename?: 'ConfluenceContentApprovalsSpaceSettingConfigPayload';
|
|
27611
|
+
config?: Maybe<ConfluenceContentApprovalsSpaceSettingConfig>;
|
|
27612
|
+
errors: Array<MutationError>;
|
|
27613
|
+
success: Scalars['Boolean']['output'];
|
|
27614
|
+
};
|
|
27615
|
+
export declare type ConfluenceContentApprovalsSpaceSettingReviewerInput = {
|
|
27616
|
+
principalId: Scalars['String']['input'];
|
|
27617
|
+
principalType: ConfluencePrincipalType;
|
|
27618
|
+
};
|
|
27843
27619
|
export declare type ConfluenceContentApprovalsSpaceSettingsPayload = {
|
|
27844
27620
|
__typename?: 'ConfluenceContentApprovalsSpaceSettingsPayload';
|
|
27845
27621
|
errors: Array<MutationError>;
|
|
@@ -29769,6 +29545,12 @@ export declare type ConfluenceMarkAllContainerCommentsAsReadInput = {
|
|
|
29769
29545
|
contentId: Scalars['String']['input'];
|
|
29770
29546
|
readView?: InputMaybe<ConfluenceViewState>;
|
|
29771
29547
|
};
|
|
29548
|
+
export declare type ConfluenceMarkdownDroppedElement = {
|
|
29549
|
+
__typename?: 'ConfluenceMarkdownDroppedElement';
|
|
29550
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
29551
|
+
detail?: Maybe<Scalars['String']['output']>;
|
|
29552
|
+
occurrences?: Maybe<Scalars['Int']['output']>;
|
|
29553
|
+
};
|
|
29772
29554
|
export declare type ConfluenceMediaTokenData = {
|
|
29773
29555
|
__typename?: 'ConfluenceMediaTokenData';
|
|
29774
29556
|
clientId: Scalars['String']['output'];
|
|
@@ -31375,6 +31157,28 @@ export declare enum ConfluencePolicyEnabledStatus {
|
|
|
31375
31157
|
Enabled = "ENABLED",
|
|
31376
31158
|
UndeterminedDueToInternalError = "UNDETERMINED_DUE_TO_INTERNAL_ERROR"
|
|
31377
31159
|
}
|
|
31160
|
+
export declare type ConfluencePopularLabelEntry = {
|
|
31161
|
+
__typename?: 'ConfluencePopularLabelEntry';
|
|
31162
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
31163
|
+
labelId?: Maybe<Scalars['String']['output']>;
|
|
31164
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
31165
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
31166
|
+
};
|
|
31167
|
+
export declare type ConfluencePopularLabelEntryConnection = {
|
|
31168
|
+
__typename?: 'ConfluencePopularLabelEntryConnection';
|
|
31169
|
+
edges?: Maybe<Array<Maybe<ConfluencePopularLabelEntryEdge>>>;
|
|
31170
|
+
nodes?: Maybe<Array<Maybe<ConfluencePopularLabelEntry>>>;
|
|
31171
|
+
pageInfo: ConfluencePageInfo;
|
|
31172
|
+
};
|
|
31173
|
+
export declare type ConfluencePopularLabelEntryEdge = {
|
|
31174
|
+
__typename?: 'ConfluencePopularLabelEntryEdge';
|
|
31175
|
+
cursor: Scalars['String']['output'];
|
|
31176
|
+
node?: Maybe<ConfluencePopularLabelEntry>;
|
|
31177
|
+
};
|
|
31178
|
+
export declare enum ConfluencePopularLabelStyle {
|
|
31179
|
+
Heatmap = "HEATMAP",
|
|
31180
|
+
List = "LIST"
|
|
31181
|
+
}
|
|
31378
31182
|
export declare type ConfluencePrincipal = {
|
|
31379
31183
|
__typename?: 'ConfluencePrincipal';
|
|
31380
31184
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
@@ -32344,6 +32148,11 @@ export declare type ConfluenceSpaceAnalyticsPermissionUserPrincipal = Confluence
|
|
|
32344
32148
|
principalId: Scalars['ID']['output'];
|
|
32345
32149
|
profilePicture?: Maybe<Icon>;
|
|
32346
32150
|
};
|
|
32151
|
+
export declare type ConfluenceSpaceApprovalReviewerEntry = {
|
|
32152
|
+
__typename?: 'ConfluenceSpaceApprovalReviewerEntry';
|
|
32153
|
+
principalId: Scalars['String']['output'];
|
|
32154
|
+
principalType: ConfluencePrincipalType;
|
|
32155
|
+
};
|
|
32347
32156
|
export declare type ConfluenceSpaceConnection = {
|
|
32348
32157
|
__typename?: 'ConfluenceSpaceConnection';
|
|
32349
32158
|
edges?: Maybe<Array<Maybe<ConfluenceSpaceEdge>>>;
|
|
@@ -32627,6 +32436,11 @@ export declare enum ConfluenceSubscriptionContentType {
|
|
|
32627
32436
|
Page = "PAGE",
|
|
32628
32437
|
Whiteboard = "WHITEBOARD"
|
|
32629
32438
|
}
|
|
32439
|
+
export declare type ConfluenceSuggestedEditsUpdated = {
|
|
32440
|
+
__typename?: 'ConfluenceSuggestedEditsUpdated';
|
|
32441
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
32442
|
+
id: Scalars['ID']['output'];
|
|
32443
|
+
};
|
|
32630
32444
|
export declare type ConfluenceSyncSmartFolderInput = {
|
|
32631
32445
|
folderId: Scalars['ID']['input'];
|
|
32632
32446
|
};
|
|
@@ -33793,6 +33607,11 @@ export declare type ConfluenceUsersHavePermissionList = {
|
|
|
33793
33607
|
__typename?: 'ConfluenceUsersHavePermissionList';
|
|
33794
33608
|
usersHavePermissionList: Array<Maybe<ConfluenceUserHasPermission>>;
|
|
33795
33609
|
};
|
|
33610
|
+
export declare type ConfluenceValidateConvertPageToMarkdownModeResult = {
|
|
33611
|
+
__typename?: 'ConfluenceValidateConvertPageToMarkdownModeResult';
|
|
33612
|
+
droppedElements?: Maybe<Array<Maybe<ConfluenceMarkdownDroppedElement>>>;
|
|
33613
|
+
isLossless: Scalars['Boolean']['output'];
|
|
33614
|
+
};
|
|
33796
33615
|
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
33797
33616
|
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
33798
33617
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -34622,6 +34441,7 @@ export declare type ContentRestrictions = {
|
|
|
34622
34441
|
archive?: Maybe<ContentRestriction>;
|
|
34623
34442
|
copy?: Maybe<ContentRestriction>;
|
|
34624
34443
|
create?: Maybe<ContentRestriction>;
|
|
34444
|
+
createPublicLink?: Maybe<ContentRestriction>;
|
|
34625
34445
|
create_space?: Maybe<ContentRestriction>;
|
|
34626
34446
|
delete?: Maybe<ContentRestriction>;
|
|
34627
34447
|
export?: Maybe<ContentRestriction>;
|
|
@@ -34853,6 +34673,7 @@ export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
|
34853
34673
|
};
|
|
34854
34674
|
export declare type ConvoAiAnswerPartMessage = ConvoAiAgentMessage & {
|
|
34855
34675
|
__typename?: 'ConvoAiAnswerPartMessage';
|
|
34676
|
+
artifact?: Maybe<ConvoAiMessageArtifact>;
|
|
34856
34677
|
audio?: Maybe<Scalars['String']['output']>;
|
|
34857
34678
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
34858
34679
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -34877,6 +34698,7 @@ export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
|
34877
34698
|
export declare type ConvoAiConversationMessage = ConvoAiAgentMessage & {
|
|
34878
34699
|
__typename?: 'ConvoAiConversationMessage';
|
|
34879
34700
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
34701
|
+
artifacts?: Maybe<Array<ConvoAiMessageArtifact>>;
|
|
34880
34702
|
authorId?: Maybe<Scalars['String']['output']>;
|
|
34881
34703
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
34882
34704
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
@@ -35084,6 +34906,14 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
35084
34906
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
35085
34907
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
35086
34908
|
};
|
|
34909
|
+
export declare type ConvoAiMessageArtifact = {
|
|
34910
|
+
__typename?: 'ConvoAiMessageArtifact';
|
|
34911
|
+
append: Scalars['Boolean']['output'];
|
|
34912
|
+
id: Scalars['ID']['output'];
|
|
34913
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
34914
|
+
parts: Array<Scalars['JSON']['output']>;
|
|
34915
|
+
type: Scalars['String']['output'];
|
|
34916
|
+
};
|
|
35087
34917
|
export declare enum ConvoAiMessageAuthorRole {
|
|
35088
34918
|
Agent = "AGENT",
|
|
35089
34919
|
Assistant = "ASSISTANT",
|
|
@@ -35765,6 +35595,62 @@ export declare type CplsQueryErrorExtension = QueryErrorExtension & {
|
|
|
35765
35595
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
35766
35596
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
35767
35597
|
};
|
|
35598
|
+
export declare type CplsReorderContributorInput = {
|
|
35599
|
+
cloudId: Scalars['ID']['input'];
|
|
35600
|
+
contributorDataId: Scalars['ID']['input'];
|
|
35601
|
+
position: CplsReorderPosition;
|
|
35602
|
+
scopeId: Scalars['ID']['input'];
|
|
35603
|
+
};
|
|
35604
|
+
export declare type CplsReorderContributorPayload = Payload & {
|
|
35605
|
+
__typename?: 'CplsReorderContributorPayload';
|
|
35606
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35607
|
+
success: Scalars['Boolean']['output'];
|
|
35608
|
+
};
|
|
35609
|
+
export declare type CplsReorderContributorWorkInput = {
|
|
35610
|
+
cloudId: Scalars['ID']['input'];
|
|
35611
|
+
contributorDataId: Scalars['ID']['input'];
|
|
35612
|
+
position: CplsReorderPosition;
|
|
35613
|
+
scopeId: Scalars['ID']['input'];
|
|
35614
|
+
workId: Scalars['ID']['input'];
|
|
35615
|
+
};
|
|
35616
|
+
export declare type CplsReorderContributorWorkPayload = Payload & {
|
|
35617
|
+
__typename?: 'CplsReorderContributorWorkPayload';
|
|
35618
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35619
|
+
success: Scalars['Boolean']['output'];
|
|
35620
|
+
};
|
|
35621
|
+
export declare type CplsReorderPosition = {
|
|
35622
|
+
anchorId?: InputMaybe<Scalars['ID']['input']>;
|
|
35623
|
+
kind: CplsReorderPositionKind;
|
|
35624
|
+
};
|
|
35625
|
+
export declare enum CplsReorderPositionKind {
|
|
35626
|
+
After = "AFTER",
|
|
35627
|
+
Before = "BEFORE",
|
|
35628
|
+
First = "FIRST",
|
|
35629
|
+
Last = "LAST"
|
|
35630
|
+
}
|
|
35631
|
+
export declare type CplsReorderWorkContributorInput = {
|
|
35632
|
+
cloudId: Scalars['ID']['input'];
|
|
35633
|
+
contributorDataId: Scalars['ID']['input'];
|
|
35634
|
+
position: CplsReorderPosition;
|
|
35635
|
+
scopeId: Scalars['ID']['input'];
|
|
35636
|
+
workId: Scalars['ID']['input'];
|
|
35637
|
+
};
|
|
35638
|
+
export declare type CplsReorderWorkContributorPayload = Payload & {
|
|
35639
|
+
__typename?: 'CplsReorderWorkContributorPayload';
|
|
35640
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35641
|
+
success: Scalars['Boolean']['output'];
|
|
35642
|
+
};
|
|
35643
|
+
export declare type CplsReorderWorkInput = {
|
|
35644
|
+
cloudId: Scalars['ID']['input'];
|
|
35645
|
+
position: CplsReorderPosition;
|
|
35646
|
+
scopeId: Scalars['ID']['input'];
|
|
35647
|
+
workId: Scalars['ID']['input'];
|
|
35648
|
+
};
|
|
35649
|
+
export declare type CplsReorderWorkPayload = Payload & {
|
|
35650
|
+
__typename?: 'CplsReorderWorkPayload';
|
|
35651
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35652
|
+
success: Scalars['Boolean']['output'];
|
|
35653
|
+
};
|
|
35768
35654
|
export declare type CplsSearchCustomContributionTargetsInput = {
|
|
35769
35655
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35770
35656
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -36610,6 +36496,13 @@ export declare type CreatePolarisViewSetPayload = Payload & {
|
|
|
36610
36496
|
node?: Maybe<PolarisViewSet>;
|
|
36611
36497
|
success: Scalars['Boolean']['output'];
|
|
36612
36498
|
};
|
|
36499
|
+
export declare type CreateRollingReleasePayload = Payload & {
|
|
36500
|
+
__typename?: 'CreateRollingReleasePayload';
|
|
36501
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36502
|
+
rolloutId?: Maybe<Scalars['String']['output']>;
|
|
36503
|
+
success: Scalars['Boolean']['output'];
|
|
36504
|
+
targetVersionId?: Maybe<Scalars['String']['output']>;
|
|
36505
|
+
};
|
|
36613
36506
|
export declare type CreateSpaceAdditionalSettingsInput = {
|
|
36614
36507
|
jiraProject?: InputMaybe<CreateSpaceJiraProjectInput>;
|
|
36615
36508
|
spaceTypeSettings?: InputMaybe<SpaceTypeSettingsInput>;
|
|
@@ -38017,6 +37910,22 @@ export declare type CustomerServiceExternalStatusesResponse = {
|
|
|
38017
37910
|
export declare type CustomerServiceFilterInput = {
|
|
38018
37911
|
context: CustomerServiceContext;
|
|
38019
37912
|
};
|
|
37913
|
+
export declare type CustomerServiceHelpCenterMetadata = {
|
|
37914
|
+
__typename?: 'CustomerServiceHelpCenterMetadata';
|
|
37915
|
+
helpCenterId: Scalars['ID']['output'];
|
|
37916
|
+
id: Scalars['ID']['output'];
|
|
37917
|
+
isRequestSharingEnabled: Scalars['Boolean']['output'];
|
|
37918
|
+
};
|
|
37919
|
+
export declare type CustomerServiceHelpCenterMetadataQueryResult = CustomerServiceHelpCenterMetadata | QueryError;
|
|
37920
|
+
export declare type CustomerServiceHelpCenterMetadataUpsertInput = {
|
|
37921
|
+
isRequestSharingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37922
|
+
};
|
|
37923
|
+
export declare type CustomerServiceHelpCenterMetadataUpsertPayload = {
|
|
37924
|
+
__typename?: 'CustomerServiceHelpCenterMetadataUpsertPayload';
|
|
37925
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37926
|
+
helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadata>;
|
|
37927
|
+
success: Scalars['Boolean']['output'];
|
|
37928
|
+
};
|
|
38020
37929
|
export declare type CustomerServiceIndividual = Node & {
|
|
38021
37930
|
__typename?: 'CustomerServiceIndividual';
|
|
38022
37931
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
@@ -38563,6 +38472,7 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
38563
38472
|
};
|
|
38564
38473
|
export declare enum CustomerServiceReportedByFilter {
|
|
38565
38474
|
Other = "OTHER",
|
|
38475
|
+
SharedByOrg = "SHARED_BY_ORG",
|
|
38566
38476
|
User = "USER"
|
|
38567
38477
|
}
|
|
38568
38478
|
export declare type CustomerServiceRequest = {
|
|
@@ -39805,6 +39715,7 @@ export declare type DevAiAutodevNextWorkItem = {
|
|
|
39805
39715
|
repository?: Maybe<Scalars['String']['output']>;
|
|
39806
39716
|
requestedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
39807
39717
|
state?: Maybe<DevAiAutodevNextWorkItemState>;
|
|
39718
|
+
workItemState?: Maybe<Scalars['ID']['output']>;
|
|
39808
39719
|
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
39809
39720
|
};
|
|
39810
39721
|
export declare type DevAiAutodevNextWorkItemConnection = {
|
|
@@ -39825,6 +39736,7 @@ export declare enum DevAiAutodevNextWorkItemState {
|
|
|
39825
39736
|
NeedsScoping = "NEEDS_SCOPING",
|
|
39826
39737
|
OutOfScope = "OUT_OF_SCOPE",
|
|
39827
39738
|
PendingClassification = "PENDING_CLASSIFICATION",
|
|
39739
|
+
PendingReview = "PENDING_REVIEW",
|
|
39828
39740
|
Ready = "READY"
|
|
39829
39741
|
}
|
|
39830
39742
|
export declare type DevAiAutodevNextWorkstream = {
|
|
@@ -41024,6 +40936,8 @@ export declare type DevConsoleDeveloperSpaceResourceTotal = {
|
|
|
41024
40936
|
};
|
|
41025
40937
|
export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
41026
40938
|
__typename?: 'DevConsoleDeveloperSpaceResourceTotals';
|
|
40939
|
+
containerCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
40940
|
+
containerMemory?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41027
40941
|
functionCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41028
40942
|
kvsRead?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41029
40943
|
kvsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
@@ -41230,6 +41144,8 @@ export declare type DevConsoleQueryTenantContextsArgs = {
|
|
|
41230
41144
|
ids: Array<Scalars['ID']['input']>;
|
|
41231
41145
|
};
|
|
41232
41146
|
export declare enum DevConsoleResource {
|
|
41147
|
+
ContainerCompute = "CONTAINER_COMPUTE",
|
|
41148
|
+
ContainerMemory = "CONTAINER_MEMORY",
|
|
41233
41149
|
FunctionCompute = "FUNCTION_COMPUTE",
|
|
41234
41150
|
KvsRead = "KVS_READ",
|
|
41235
41151
|
KvsWrite = "KVS_WRITE",
|
|
@@ -41249,6 +41165,8 @@ export declare type DevConsoleResourceUsage = {
|
|
|
41249
41165
|
};
|
|
41250
41166
|
export declare type DevConsoleResourceUsageData = {
|
|
41251
41167
|
__typename?: 'DevConsoleResourceUsageData';
|
|
41168
|
+
containerCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41169
|
+
containerMemory?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41252
41170
|
functionCompute?: Maybe<Array<DevConsoleComputeResourceUsage>>;
|
|
41253
41171
|
kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41254
41172
|
kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
@@ -43140,6 +43058,7 @@ export declare type EcosystemMutation = {
|
|
|
43140
43058
|
cancelAppVersionRollout?: Maybe<CancelAppVersionRolloutPayload>;
|
|
43141
43059
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
43142
43060
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
43061
|
+
createRollingRelease?: Maybe<CreateRollingReleasePayload>;
|
|
43143
43062
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
43144
43063
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
43145
43064
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
@@ -43171,6 +43090,11 @@ export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
|
43171
43090
|
export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
|
|
43172
43091
|
input: CreateAppVersionRolloutInput;
|
|
43173
43092
|
};
|
|
43093
|
+
export declare type EcosystemMutationCreateRollingReleaseArgs = {
|
|
43094
|
+
appId: Scalars['ID']['input'];
|
|
43095
|
+
envId: Scalars['ID']['input'];
|
|
43096
|
+
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
43097
|
+
};
|
|
43174
43098
|
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
43175
43099
|
input: DeleteAppEnvironmentInput;
|
|
43176
43100
|
};
|
|
@@ -43241,6 +43165,7 @@ export declare type EcosystemQuery = {
|
|
|
43241
43165
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
43242
43166
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43243
43167
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
43168
|
+
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
43244
43169
|
userAccess?: Maybe<UserAccess>;
|
|
43245
43170
|
userGrants?: Maybe<UserGrantConnection>;
|
|
43246
43171
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
@@ -43321,6 +43246,12 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
|
43321
43246
|
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
43322
43247
|
cloudAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
43323
43248
|
};
|
|
43249
|
+
export declare type EcosystemQueryRollingReleasesArgs = {
|
|
43250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43251
|
+
appId: Scalars['ID']['input'];
|
|
43252
|
+
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
43253
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43254
|
+
};
|
|
43324
43255
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
43325
43256
|
contextId: Scalars['ID']['input'];
|
|
43326
43257
|
definitionId: Scalars['ID']['input'];
|
|
@@ -43349,6 +43280,47 @@ export declare enum EcosystemRequiredProduct {
|
|
|
43349
43280
|
Confluence = "CONFLUENCE",
|
|
43350
43281
|
Jira = "JIRA"
|
|
43351
43282
|
}
|
|
43283
|
+
export declare type EcosystemRollingRelease = {
|
|
43284
|
+
__typename?: 'EcosystemRollingRelease';
|
|
43285
|
+
appEnvironmentId: Scalars['ID']['output'];
|
|
43286
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
43287
|
+
failureCount: Scalars['Int']['output'];
|
|
43288
|
+
id: Scalars['ID']['output'];
|
|
43289
|
+
initiator?: Maybe<User>;
|
|
43290
|
+
startedAt: Scalars['DateTime']['output'];
|
|
43291
|
+
status: EcosystemRollingReleaseStatus;
|
|
43292
|
+
successCount: Scalars['Int']['output'];
|
|
43293
|
+
targetVersionId: Scalars['ID']['output'];
|
|
43294
|
+
totalInstallations: Scalars['Int']['output'];
|
|
43295
|
+
};
|
|
43296
|
+
export declare type EcosystemRollingReleaseConnection = {
|
|
43297
|
+
__typename?: 'EcosystemRollingReleaseConnection';
|
|
43298
|
+
edges?: Maybe<Array<Maybe<EcosystemRollingReleaseEdge>>>;
|
|
43299
|
+
nodes?: Maybe<Array<Maybe<EcosystemRollingRelease>>>;
|
|
43300
|
+
pageInfo: EcosystemRollingReleasePageInfo;
|
|
43301
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43302
|
+
};
|
|
43303
|
+
export declare type EcosystemRollingReleaseEdge = {
|
|
43304
|
+
__typename?: 'EcosystemRollingReleaseEdge';
|
|
43305
|
+
cursor: Scalars['String']['output'];
|
|
43306
|
+
node?: Maybe<EcosystemRollingRelease>;
|
|
43307
|
+
};
|
|
43308
|
+
export declare type EcosystemRollingReleasePageInfo = {
|
|
43309
|
+
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
43310
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
43311
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
43312
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
43313
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
43314
|
+
};
|
|
43315
|
+
export declare enum EcosystemRollingReleaseStatus {
|
|
43316
|
+
Cancelled = "CANCELLED",
|
|
43317
|
+
Completed = "COMPLETED",
|
|
43318
|
+
Failed = "FAILED",
|
|
43319
|
+
Queued = "QUEUED",
|
|
43320
|
+
Running = "RUNNING",
|
|
43321
|
+
Terminated = "TERMINATED",
|
|
43322
|
+
TimedOut = "TIMED_OUT"
|
|
43323
|
+
}
|
|
43352
43324
|
export declare type EcosystemSubscription = {
|
|
43353
43325
|
__typename?: 'EcosystemSubscription';
|
|
43354
43326
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
@@ -43478,6 +43450,7 @@ export declare type EnabledContentTypes = {
|
|
|
43478
43450
|
isFoldersEnabled: Scalars['Boolean']['output'];
|
|
43479
43451
|
isLivePagesEnabled: Scalars['Boolean']['output'];
|
|
43480
43452
|
isSlidesEnabled: Scalars['Boolean']['output'];
|
|
43453
|
+
isSmartFoldersEnabled: Scalars['Boolean']['output'];
|
|
43481
43454
|
isWhiteboardsEnabled: Scalars['Boolean']['output'];
|
|
43482
43455
|
};
|
|
43483
43456
|
export declare type EnabledContentTypesInput = {
|
|
@@ -43487,6 +43460,7 @@ export declare type EnabledContentTypesInput = {
|
|
|
43487
43460
|
isFoldersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43488
43461
|
isLivePagesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43489
43462
|
isSlidesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43463
|
+
isSmartFoldersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43490
43464
|
isWhiteboardsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43491
43465
|
};
|
|
43492
43466
|
export declare type EnabledFeatures = {
|
|
@@ -44922,6 +44896,7 @@ export declare type ExternalProject = Node & {
|
|
|
44922
44896
|
assignee?: Maybe<ExternalUser>;
|
|
44923
44897
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
44924
44898
|
attachments?: Maybe<Array<Maybe<ExternalProjectAttachment>>>;
|
|
44899
|
+
businessCase?: Maybe<Scalars['String']['output']>;
|
|
44925
44900
|
container?: Maybe<ExternalEntity>;
|
|
44926
44901
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
44927
44902
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -44929,6 +44904,7 @@ export declare type ExternalProject = Node & {
|
|
|
44929
44904
|
description?: Maybe<Scalars['String']['output']>;
|
|
44930
44905
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
44931
44906
|
dueDate?: Maybe<Scalars['String']['output']>;
|
|
44907
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
44932
44908
|
environment?: Maybe<Scalars['String']['output']>;
|
|
44933
44909
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
44934
44910
|
id: Scalars['ID']['output'];
|
|
@@ -44943,6 +44919,7 @@ export declare type ExternalProject = Node & {
|
|
|
44943
44919
|
resolution?: Maybe<Scalars['String']['output']>;
|
|
44944
44920
|
status?: Maybe<Scalars['String']['output']>;
|
|
44945
44921
|
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
44922
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
44946
44923
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
44947
44924
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
44948
44925
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -48518,6 +48495,7 @@ export declare type GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPa
|
|
|
48518
48495
|
export declare type GraphIntegrationSkill = {
|
|
48519
48496
|
__typename?: 'GraphIntegrationSkill';
|
|
48520
48497
|
description: Scalars['String']['output'];
|
|
48498
|
+
file?: Maybe<GraphIntegrationSkillFile>;
|
|
48521
48499
|
id: Scalars['ID']['output'];
|
|
48522
48500
|
instructions: Scalars['String']['output'];
|
|
48523
48501
|
metadata: GraphIntegrationSkillMetadata;
|
|
@@ -48561,6 +48539,13 @@ export declare type GraphIntegrationSkillDirectoryItem = {
|
|
|
48561
48539
|
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
48562
48540
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
48563
48541
|
};
|
|
48542
|
+
export declare type GraphIntegrationSkillFile = {
|
|
48543
|
+
__typename?: 'GraphIntegrationSkillFile';
|
|
48544
|
+
checksum: Scalars['String']['output'];
|
|
48545
|
+
downloadUrl: Scalars['String']['output'];
|
|
48546
|
+
fileId: Scalars['String']['output'];
|
|
48547
|
+
fileSize: Scalars['Int']['output'];
|
|
48548
|
+
};
|
|
48564
48549
|
export declare type GraphIntegrationSkillItem = {
|
|
48565
48550
|
__typename?: 'GraphIntegrationSkillItem';
|
|
48566
48551
|
description: Scalars['String']['output'];
|
|
@@ -104967,13 +104952,20 @@ export declare type GravityAddReactionPayload = Payload & {
|
|
|
104967
104952
|
errors?: Maybe<Array<MutationError>>;
|
|
104968
104953
|
success: Scalars['Boolean']['output'];
|
|
104969
104954
|
};
|
|
104955
|
+
export declare type GravityCreateViewFromInlinedTemplateInput = {
|
|
104956
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
104957
|
+
projectId: Scalars['ID']['input'];
|
|
104958
|
+
refMappings?: InputMaybe<GravityRefMappingsInput>;
|
|
104959
|
+
refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
|
|
104960
|
+
sectionId?: InputMaybe<Scalars['String']['input']>;
|
|
104961
|
+
template: GravityViewTemplateInput;
|
|
104962
|
+
};
|
|
104970
104963
|
export declare type GravityCreateViewFromTemplateInput = {
|
|
104971
104964
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
104972
104965
|
projectId: Scalars['ID']['input'];
|
|
104973
104966
|
refMappings?: InputMaybe<GravityRefMappingsInput>;
|
|
104974
104967
|
refResolutionStrategy?: InputMaybe<GravityRefResolutionStrategy>;
|
|
104975
104968
|
sectionId?: InputMaybe<Scalars['String']['input']>;
|
|
104976
|
-
template?: InputMaybe<GravityViewTemplateInput>;
|
|
104977
104969
|
templateId?: InputMaybe<Scalars['ID']['input']>;
|
|
104978
104970
|
};
|
|
104979
104971
|
export declare type GravityCreateViewFromTemplatePayload = Payload & {
|
|
@@ -105093,12 +105085,12 @@ export declare enum GravityFieldRollupType {
|
|
|
105093
105085
|
Range = "RANGE",
|
|
105094
105086
|
Sum = "SUM"
|
|
105095
105087
|
}
|
|
105096
|
-
export declare type
|
|
105088
|
+
export declare type GravityGenerateViewTemplateFromUserPromptInput = {
|
|
105097
105089
|
projectId: Scalars['ID']['input'];
|
|
105098
105090
|
prompt: Scalars['String']['input'];
|
|
105099
105091
|
};
|
|
105100
|
-
export declare type
|
|
105101
|
-
__typename?: '
|
|
105092
|
+
export declare type GravityGenerateViewTemplateFromUserPromptPayload = Payload & {
|
|
105093
|
+
__typename?: 'GravityGenerateViewTemplateFromUserPromptPayload';
|
|
105102
105094
|
errors?: Maybe<Array<MutationError>>;
|
|
105103
105095
|
success: Scalars['Boolean']['output'];
|
|
105104
105096
|
template?: Maybe<GravityViewTemplate>;
|
|
@@ -105404,7 +105396,8 @@ export declare enum GravityViewVisualizationType {
|
|
|
105404
105396
|
List = "LIST",
|
|
105405
105397
|
Matrix = "MATRIX",
|
|
105406
105398
|
Table = "TABLE",
|
|
105407
|
-
Timeline = "TIMELINE"
|
|
105399
|
+
Timeline = "TIMELINE",
|
|
105400
|
+
Tree = "TREE"
|
|
105408
105401
|
}
|
|
105409
105402
|
export declare type Group = {
|
|
105410
105403
|
__typename?: 'Group';
|
|
@@ -105576,6 +105569,23 @@ export declare type GrowthUnifiedProfileBestPerformingTargetData = {
|
|
|
105576
105569
|
type?: Maybe<Scalars['String']['output']>;
|
|
105577
105570
|
value?: Maybe<Scalars['String']['output']>;
|
|
105578
105571
|
};
|
|
105572
|
+
export declare type GrowthUnifiedProfileCampaign = {
|
|
105573
|
+
__typename?: 'GrowthUnifiedProfileCampaign';
|
|
105574
|
+
campaign?: Maybe<Scalars['String']['output']>;
|
|
105575
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
105576
|
+
medium?: Maybe<Scalars['String']['output']>;
|
|
105577
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
105578
|
+
sfdcCampaignId?: Maybe<Scalars['String']['output']>;
|
|
105579
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
105580
|
+
};
|
|
105581
|
+
export declare type GrowthUnifiedProfileCampaignInput = {
|
|
105582
|
+
campaign?: InputMaybe<Scalars['String']['input']>;
|
|
105583
|
+
content?: InputMaybe<Scalars['String']['input']>;
|
|
105584
|
+
medium?: InputMaybe<Scalars['String']['input']>;
|
|
105585
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
105586
|
+
sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
105587
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
105588
|
+
};
|
|
105579
105589
|
export declare enum GrowthUnifiedProfileChannel {
|
|
105580
105590
|
PaidContent = "PAID_CONTENT",
|
|
105581
105591
|
PaidDisplay = "PAID_DISPLAY",
|
|
@@ -105679,6 +105689,17 @@ export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
|
105679
105689
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
105680
105690
|
unifiedProfile: GrowthUnifiedProfileInput;
|
|
105681
105691
|
};
|
|
105692
|
+
export declare type GrowthUnifiedProfileCreateSnIdProfileInput = {
|
|
105693
|
+
firstActivationContext: GrowthUnifiedProfileFirstActivationContextInput;
|
|
105694
|
+
snId: Scalars['ID']['input'];
|
|
105695
|
+
};
|
|
105696
|
+
export declare type GrowthUnifiedProfileCreateSnIdProfileResponse = {
|
|
105697
|
+
__typename?: 'GrowthUnifiedProfileCreateSnIdProfileResponse';
|
|
105698
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
105699
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
105700
|
+
snId?: Maybe<Scalars['ID']['output']>;
|
|
105701
|
+
success: Scalars['Boolean']['output'];
|
|
105702
|
+
};
|
|
105682
105703
|
export declare enum GrowthUnifiedProfileDomainType {
|
|
105683
105704
|
Business = "BUSINESS",
|
|
105684
105705
|
Personal = "PERSONAL"
|
|
@@ -105752,6 +105773,55 @@ export declare enum GrowthUnifiedProfileFeatureType {
|
|
|
105752
105773
|
Stateful = "STATEFUL",
|
|
105753
105774
|
Stateless = "STATELESS"
|
|
105754
105775
|
}
|
|
105776
|
+
export declare type GrowthUnifiedProfileFirstActivationContext = {
|
|
105777
|
+
__typename?: 'GrowthUnifiedProfileFirstActivationContext';
|
|
105778
|
+
activeGroups?: Maybe<Scalars['String']['output']>;
|
|
105779
|
+
bxpGatewayRequestId?: Maybe<Scalars['String']['output']>;
|
|
105780
|
+
campaign?: Maybe<GrowthUnifiedProfileCampaign>;
|
|
105781
|
+
cmsPageVariant?: Maybe<Scalars['String']['output']>;
|
|
105782
|
+
cookiesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
105783
|
+
expiresAt?: Maybe<Scalars['Float']['output']>;
|
|
105784
|
+
isMarketingEvent?: Maybe<Scalars['Boolean']['output']>;
|
|
105785
|
+
onboardingJourney?: Maybe<Scalars['String']['output']>;
|
|
105786
|
+
originProduct?: Maybe<Scalars['String']['output']>;
|
|
105787
|
+
pageCanonicalUrl?: Maybe<Scalars['String']['output']>;
|
|
105788
|
+
pageDomain?: Maybe<Scalars['String']['output']>;
|
|
105789
|
+
pagePath?: Maybe<Scalars['String']['output']>;
|
|
105790
|
+
pageReferrerDomain?: Maybe<Scalars['String']['output']>;
|
|
105791
|
+
pageReferrerSubdomain?: Maybe<Scalars['String']['output']>;
|
|
105792
|
+
pageReferrerUrl?: Maybe<Scalars['String']['output']>;
|
|
105793
|
+
pageReferrerUrlParameters?: Maybe<Scalars['String']['output']>;
|
|
105794
|
+
pageSubdomain?: Maybe<Scalars['String']['output']>;
|
|
105795
|
+
pageUrl?: Maybe<Scalars['String']['output']>;
|
|
105796
|
+
pageUrlParameters?: Maybe<Scalars['String']['output']>;
|
|
105797
|
+
pageUrlParamsJson?: Maybe<Scalars['String']['output']>;
|
|
105798
|
+
userAgent?: Maybe<Scalars['String']['output']>;
|
|
105799
|
+
writeKey?: Maybe<Scalars['String']['output']>;
|
|
105800
|
+
};
|
|
105801
|
+
export declare type GrowthUnifiedProfileFirstActivationContextInput = {
|
|
105802
|
+
activeGroups?: InputMaybe<Scalars['String']['input']>;
|
|
105803
|
+
bxpGatewayRequestId?: InputMaybe<Scalars['String']['input']>;
|
|
105804
|
+
campaign?: InputMaybe<GrowthUnifiedProfileCampaignInput>;
|
|
105805
|
+
cmsPageVariant?: InputMaybe<Scalars['String']['input']>;
|
|
105806
|
+
cookiesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105807
|
+
expiresAt?: InputMaybe<Scalars['Float']['input']>;
|
|
105808
|
+
isMarketingEvent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105809
|
+
onboardingJourney?: InputMaybe<Scalars['String']['input']>;
|
|
105810
|
+
originProduct?: InputMaybe<Scalars['String']['input']>;
|
|
105811
|
+
pageCanonicalUrl?: InputMaybe<Scalars['String']['input']>;
|
|
105812
|
+
pageDomain?: InputMaybe<Scalars['String']['input']>;
|
|
105813
|
+
pagePath?: InputMaybe<Scalars['String']['input']>;
|
|
105814
|
+
pageReferrerDomain?: InputMaybe<Scalars['String']['input']>;
|
|
105815
|
+
pageReferrerSubdomain?: InputMaybe<Scalars['String']['input']>;
|
|
105816
|
+
pageReferrerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
105817
|
+
pageReferrerUrlParameters?: InputMaybe<Scalars['String']['input']>;
|
|
105818
|
+
pageSubdomain?: InputMaybe<Scalars['String']['input']>;
|
|
105819
|
+
pageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
105820
|
+
pageUrlParameters?: InputMaybe<Scalars['String']['input']>;
|
|
105821
|
+
pageUrlParamsJson?: InputMaybe<Scalars['String']['input']>;
|
|
105822
|
+
userAgent?: InputMaybe<Scalars['String']['input']>;
|
|
105823
|
+
writeKey?: InputMaybe<Scalars['String']['input']>;
|
|
105824
|
+
};
|
|
105755
105825
|
export declare type GrowthUnifiedProfileFunctionalOnboardingResult = {
|
|
105756
105826
|
__typename?: 'GrowthUnifiedProfileFunctionalOnboardingResult';
|
|
105757
105827
|
completedCoreActions: Array<GrowthUnifiedProfileCompletedCoreAction>;
|
|
@@ -106114,6 +106184,11 @@ export declare type GrowthUnifiedProfileSiteProfileResultOnboardingHubInsightsPe
|
|
|
106114
106184
|
onboardingIds: Array<Scalars['ID']['input']>;
|
|
106115
106185
|
rollingIntervals: Array<GrowthUnifiedProfileRollingDateIntervalInput>;
|
|
106116
106186
|
};
|
|
106187
|
+
export declare type GrowthUnifiedProfileSnIdProfileResponse = {
|
|
106188
|
+
__typename?: 'GrowthUnifiedProfileSnIdProfileResponse';
|
|
106189
|
+
firstActivationContext?: Maybe<GrowthUnifiedProfileFirstActivationContext>;
|
|
106190
|
+
snId: Scalars['ID']['output'];
|
|
106191
|
+
};
|
|
106117
106192
|
export declare enum GrowthUnifiedProfileTeamType {
|
|
106118
106193
|
CustomerService = "CUSTOMER_SERVICE",
|
|
106119
106194
|
DataScience = "DATA_SCIENCE",
|
|
@@ -109761,6 +109836,18 @@ export declare type JiraActorEdge = {
|
|
|
109761
109836
|
cursor: Scalars['String']['output'];
|
|
109762
109837
|
node?: Maybe<JiraActor>;
|
|
109763
109838
|
};
|
|
109839
|
+
export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
109840
|
+
agentAccountId: Scalars['ID']['input'];
|
|
109841
|
+
columnId: Scalars['ID']['input'];
|
|
109842
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
109843
|
+
};
|
|
109844
|
+
export declare type JiraAddAgentToBoardViewStatusColumnPayload = {
|
|
109845
|
+
__typename?: 'JiraAddAgentToBoardViewStatusColumnPayload';
|
|
109846
|
+
boardView?: Maybe<JiraBoardView>;
|
|
109847
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
109848
|
+
errors?: Maybe<Array<MutationError>>;
|
|
109849
|
+
success: Scalars['Boolean']['output'];
|
|
109850
|
+
};
|
|
109764
109851
|
export declare type JiraAddAttachmentInput = {
|
|
109765
109852
|
fileId: Scalars['String']['input'];
|
|
109766
109853
|
issue: Scalars['ID']['input'];
|
|
@@ -110102,6 +110189,7 @@ export declare type JiraAggregatedTimelineField = JiraIssueField & JiraListRowFi
|
|
|
110102
110189
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
110103
110190
|
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
110104
110191
|
issue?: Maybe<JiraIssue>;
|
|
110192
|
+
missingAggregatedDateType?: Maybe<JiraMissingAggregatedDateType>;
|
|
110105
110193
|
name: Scalars['String']['output'];
|
|
110106
110194
|
type: Scalars['String']['output'];
|
|
110107
110195
|
};
|
|
@@ -110125,6 +110213,10 @@ export declare type JiraAggregatedTimelineFieldAggregatedStartDateViewFieldArgs
|
|
|
110125
110213
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
110126
110214
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
110127
110215
|
};
|
|
110216
|
+
export declare type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
110217
|
+
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
110218
|
+
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
110219
|
+
};
|
|
110128
110220
|
export declare enum JiraAiAgentConversationState {
|
|
110129
110221
|
ArtefactReady = "ARTEFACT_READY",
|
|
110130
110222
|
AuthRequired = "AUTH_REQUIRED",
|
|
@@ -111971,6 +112063,38 @@ export declare type JiraBoardReportCategoriesArgs = {
|
|
|
111971
112063
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111972
112064
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111973
112065
|
};
|
|
112066
|
+
export declare type JiraBoardAdmin = {
|
|
112067
|
+
__typename?: 'JiraBoardAdmin';
|
|
112068
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
112069
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
112070
|
+
};
|
|
112071
|
+
export declare type JiraBoardAdminAvatarUrls = {
|
|
112072
|
+
__typename?: 'JiraBoardAdminAvatarUrls';
|
|
112073
|
+
large?: Maybe<Scalars['URL']['output']>;
|
|
112074
|
+
medium?: Maybe<Scalars['URL']['output']>;
|
|
112075
|
+
small?: Maybe<Scalars['URL']['output']>;
|
|
112076
|
+
xsmall?: Maybe<Scalars['URL']['output']>;
|
|
112077
|
+
};
|
|
112078
|
+
export declare type JiraBoardAdminGroup = {
|
|
112079
|
+
__typename?: 'JiraBoardAdminGroup';
|
|
112080
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
112081
|
+
self?: Maybe<Scalars['URL']['output']>;
|
|
112082
|
+
};
|
|
112083
|
+
export declare type JiraBoardAdminUser = {
|
|
112084
|
+
__typename?: 'JiraBoardAdminUser';
|
|
112085
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
112086
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
112087
|
+
avatarUrls?: Maybe<JiraBoardAdminAvatarUrls>;
|
|
112088
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
112089
|
+
self?: Maybe<Scalars['URL']['output']>;
|
|
112090
|
+
};
|
|
112091
|
+
export declare type JiraBoardAdmins = {
|
|
112092
|
+
__typename?: 'JiraBoardAdmins';
|
|
112093
|
+
groupKeys?: Maybe<Array<Maybe<JiraBoardAdmin>>>;
|
|
112094
|
+
groups?: Maybe<Array<Maybe<JiraBoardAdminGroup>>>;
|
|
112095
|
+
userKeys?: Maybe<Array<Maybe<JiraBoardAdmin>>>;
|
|
112096
|
+
users?: Maybe<Array<Maybe<JiraBoardAdminUser>>>;
|
|
112097
|
+
};
|
|
111974
112098
|
export declare type JiraBoardCardCoverMediaField = JiraIssueField & JiraListRowField & Node & {
|
|
111975
112099
|
__typename?: 'JiraBoardCardCoverMediaField';
|
|
111976
112100
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -112031,6 +112155,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
112031
112155
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
112032
112156
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
112033
112157
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
112158
|
+
canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
112034
112159
|
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
112035
112160
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
112036
112161
|
canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112266,7 +112391,7 @@ export declare type JiraBoardViewIssueCreateInput = {
|
|
|
112266
112391
|
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
112267
112392
|
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
112268
112393
|
};
|
|
112269
|
-
export declare type JiraBoardViewIssueCreatePayload = {
|
|
112394
|
+
export declare type JiraBoardViewIssueCreatePayload = Payload & {
|
|
112270
112395
|
__typename?: 'JiraBoardViewIssueCreatePayload';
|
|
112271
112396
|
errors?: Maybe<Array<MutationError>>;
|
|
112272
112397
|
issue?: Maybe<JiraIssue>;
|
|
@@ -112352,6 +112477,7 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
112352
112477
|
name?: Maybe<Scalars['String']['output']>;
|
|
112353
112478
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
112354
112479
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
112480
|
+
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
112355
112481
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
112356
112482
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
112357
112483
|
};
|
|
@@ -112734,6 +112860,7 @@ export declare type JiraCfoBoardPerformanceAnalyticsResultDataArgs = {
|
|
|
112734
112860
|
};
|
|
112735
112861
|
export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
112736
112862
|
__typename?: 'JiraCFOBoardPerformanceDataRow';
|
|
112863
|
+
boardAdmins?: Maybe<JiraBoardAdmins>;
|
|
112737
112864
|
boardCreator?: Maybe<User>;
|
|
112738
112865
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
112739
112866
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
@@ -112832,6 +112959,7 @@ export declare type JiraCfoDimensionInput = {
|
|
|
112832
112959
|
export declare type JiraCfoDistribution = {
|
|
112833
112960
|
__typename?: 'JiraCFODistribution';
|
|
112834
112961
|
category?: Maybe<JiraCfoDistributionCategory>;
|
|
112962
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
112835
112963
|
value?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
112836
112964
|
};
|
|
112837
112965
|
export declare enum JiraCfoDistributionCategory {
|
|
@@ -112897,6 +113025,7 @@ export declare type JiraCfoMetricInsightEdge = {
|
|
|
112897
113025
|
export declare type JiraCfoMetricInsightMetaData = {
|
|
112898
113026
|
__typename?: 'JiraCFOMetricInsightMetaData';
|
|
112899
113027
|
loadTimeDiff?: Maybe<Scalars['Int']['output']>;
|
|
113028
|
+
loadTimeDiffFloat?: Maybe<Scalars['Float']['output']>;
|
|
112900
113029
|
};
|
|
112901
113030
|
export declare enum JiraCfoMetricInsightStatus {
|
|
112902
113031
|
FastSetup = "FAST_SETUP",
|
|
@@ -115993,6 +116122,10 @@ export declare type JiraEditFieldSchemeInput = {
|
|
|
115993
116122
|
name: Scalars['String']['input'];
|
|
115994
116123
|
schemeId: Scalars['ID']['input'];
|
|
115995
116124
|
};
|
|
116125
|
+
export declare type JiraEligibleProjectsFilter = {
|
|
116126
|
+
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
116127
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
116128
|
+
};
|
|
115996
116129
|
export declare enum JiraEmailMimeType {
|
|
115997
116130
|
Html = "HTML",
|
|
115998
116131
|
Text = "TEXT"
|
|
@@ -116345,6 +116478,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
116345
116478
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
116346
116479
|
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
116347
116480
|
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
116481
|
+
includedFieldTypeCategories?: InputMaybe<Array<JiraFieldTypeGroupCategory>>;
|
|
116348
116482
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
116349
116483
|
orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
|
|
116350
116484
|
orderDirection?: InputMaybe<JiraFieldConfigOrderDirection>;
|
|
@@ -116573,6 +116707,7 @@ export declare type JiraFieldSchemesConnection = {
|
|
|
116573
116707
|
__typename?: 'JiraFieldSchemesConnection';
|
|
116574
116708
|
edges?: Maybe<Array<Maybe<JiraFieldSchemesEdge>>>;
|
|
116575
116709
|
pageInfo: PageInfo;
|
|
116710
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
116576
116711
|
};
|
|
116577
116712
|
export declare type JiraFieldSchemesEdge = {
|
|
116578
116713
|
__typename?: 'JiraFieldSchemesEdge';
|
|
@@ -116734,6 +116869,17 @@ export declare type JiraFieldTypeGroup = {
|
|
|
116734
116869
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
116735
116870
|
key?: Maybe<Scalars['String']['output']>;
|
|
116736
116871
|
};
|
|
116872
|
+
export declare enum JiraFieldTypeGroupCategory {
|
|
116873
|
+
DateFields = "DATE_FIELDS",
|
|
116874
|
+
ListsFields = "LISTS_FIELDS",
|
|
116875
|
+
NumberFields = "NUMBER_FIELDS",
|
|
116876
|
+
OtherFields = "OTHER_FIELDS",
|
|
116877
|
+
PeopleFields = "PEOPLE_FIELDS",
|
|
116878
|
+
RestrictedFields = "RESTRICTED_FIELDS",
|
|
116879
|
+
SystemAndAppFields = "SYSTEM_AND_APP_FIELDS",
|
|
116880
|
+
TextFields = "TEXT_FIELDS",
|
|
116881
|
+
WorkSortingFields = "WORK_SORTING_FIELDS"
|
|
116882
|
+
}
|
|
116737
116883
|
export declare type JiraFieldTypeGroupConnection = {
|
|
116738
116884
|
__typename?: 'JiraFieldTypeGroupConnection';
|
|
116739
116885
|
edges?: Maybe<Array<Maybe<JiraFieldTypeGroupEdge>>>;
|
|
@@ -122327,6 +122473,14 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
122327
122473
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
122328
122474
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
122329
122475
|
};
|
|
122476
|
+
export declare type JiraLinkedWorkItemsSortInput = {
|
|
122477
|
+
fieldSetId: Scalars['String']['input'];
|
|
122478
|
+
order: JiraLinkedWorkItemsSortOrder;
|
|
122479
|
+
};
|
|
122480
|
+
export declare enum JiraLinkedWorkItemsSortOrder {
|
|
122481
|
+
Asc = "ASC",
|
|
122482
|
+
Desc = "DESC"
|
|
122483
|
+
}
|
|
122330
122484
|
export declare type JiraListRow = {
|
|
122331
122485
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
122332
122486
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122718,6 +122872,11 @@ export declare type JiraMergeVersionPayload = Payload & {
|
|
|
122718
122872
|
success: Scalars['Boolean']['output'];
|
|
122719
122873
|
targetVersion?: Maybe<JiraVersion>;
|
|
122720
122874
|
};
|
|
122875
|
+
export declare enum JiraMissingAggregatedDateType {
|
|
122876
|
+
Both = "BOTH",
|
|
122877
|
+
EndDate = "END_DATE",
|
|
122878
|
+
StartDate = "START_DATE"
|
|
122879
|
+
}
|
|
122721
122880
|
export declare enum JiraMoveBoardViewIssueToCellEnd {
|
|
122722
122881
|
Bottom = "BOTTOM",
|
|
122723
122882
|
Top = "TOP"
|
|
@@ -123098,6 +123257,7 @@ export declare type JiraMutation = {
|
|
|
123098
123257
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
123099
123258
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
123100
123259
|
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
123260
|
+
jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
|
|
123101
123261
|
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
123102
123262
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
123103
123263
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
@@ -123544,6 +123704,9 @@ export declare type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
|
123544
123704
|
cloudId: Scalars['ID']['input'];
|
|
123545
123705
|
input: JiraDismissForYouRecommendedActionInput;
|
|
123546
123706
|
};
|
|
123707
|
+
export declare type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
|
|
123708
|
+
input: JiraSetProjectPolicyAssociatedProjectsInput;
|
|
123709
|
+
};
|
|
123547
123710
|
export declare type JiraMutationJwmAssociateFieldArgs = {
|
|
123548
123711
|
cloudId: Scalars['ID']['input'];
|
|
123549
123712
|
input: JiraWorkManagementAssociateFieldInput;
|
|
@@ -125852,6 +126015,7 @@ export declare type JiraProject = Node & {
|
|
|
125852
126015
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
125853
126016
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
125854
126017
|
optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
|
|
126018
|
+
policyAssociations?: Maybe<JiraProjectPolicyAssociationConnection>;
|
|
125855
126019
|
policyViolations?: Maybe<JiraProjectPolicyRuleViolationConnection>;
|
|
125856
126020
|
projectFieldTypeGroups?: Maybe<JiraFieldTypeGroupConnection>;
|
|
125857
126021
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
@@ -126012,6 +126176,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
126012
126176
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126013
126177
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126014
126178
|
};
|
|
126179
|
+
export declare type JiraProjectPolicyAssociationsArgs = {
|
|
126180
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126181
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
126182
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126183
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126184
|
+
};
|
|
126015
126185
|
export declare type JiraProjectPolicyViolationsArgs = {
|
|
126016
126186
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126017
126187
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -126549,10 +126719,44 @@ export declare enum JiraProjectPermissionType {
|
|
|
126549
126719
|
}
|
|
126550
126720
|
export declare type JiraProjectPolicy = Node & {
|
|
126551
126721
|
__typename?: 'JiraProjectPolicy';
|
|
126722
|
+
associatedProjects?: Maybe<JiraProjectPolicyAssociationConnection>;
|
|
126552
126723
|
description?: Maybe<Scalars['String']['output']>;
|
|
126724
|
+
eligibleProjects?: Maybe<JiraProjectConnection>;
|
|
126553
126725
|
id: Scalars['ID']['output'];
|
|
126554
126726
|
name?: Maybe<Scalars['String']['output']>;
|
|
126555
126727
|
};
|
|
126728
|
+
export declare type JiraProjectPolicyAssociatedProjectsArgs = {
|
|
126729
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126730
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
126731
|
+
filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
|
|
126732
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126733
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126734
|
+
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
126735
|
+
};
|
|
126736
|
+
export declare type JiraProjectPolicyEligibleProjectsArgs = {
|
|
126737
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126738
|
+
filter?: InputMaybe<JiraEligibleProjectsFilter>;
|
|
126739
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126740
|
+
};
|
|
126741
|
+
export declare type JiraProjectPolicyAssociation = {
|
|
126742
|
+
__typename?: 'JiraProjectPolicyAssociation';
|
|
126743
|
+
project?: Maybe<JiraProject>;
|
|
126744
|
+
};
|
|
126745
|
+
export declare type JiraProjectPolicyAssociationConnection = HasPageInfo & {
|
|
126746
|
+
__typename?: 'JiraProjectPolicyAssociationConnection';
|
|
126747
|
+
edges?: Maybe<Array<Maybe<JiraProjectPolicyAssociationEdge>>>;
|
|
126748
|
+
nodes?: Maybe<Array<Maybe<JiraProjectPolicyAssociation>>>;
|
|
126749
|
+
pageInfo: PageInfo;
|
|
126750
|
+
};
|
|
126751
|
+
export declare type JiraProjectPolicyAssociationEdge = {
|
|
126752
|
+
__typename?: 'JiraProjectPolicyAssociationEdge';
|
|
126753
|
+
cursor: Scalars['String']['output'];
|
|
126754
|
+
node?: Maybe<JiraProjectPolicyAssociation>;
|
|
126755
|
+
};
|
|
126756
|
+
export declare enum JiraProjectPolicyComplianceState {
|
|
126757
|
+
Compliant = "COMPLIANT",
|
|
126758
|
+
Noncompliant = "NONCOMPLIANT"
|
|
126759
|
+
}
|
|
126556
126760
|
export declare type JiraProjectPolicyConnection = HasPageInfo & HasTotal & {
|
|
126557
126761
|
__typename?: 'JiraProjectPolicyConnection';
|
|
126558
126762
|
edges?: Maybe<Array<Maybe<JiraProjectPolicyEdge>>>;
|
|
@@ -126565,6 +126769,10 @@ export declare type JiraProjectPolicyEdge = {
|
|
|
126565
126769
|
cursor: Scalars['String']['output'];
|
|
126566
126770
|
node?: Maybe<JiraProjectPolicy>;
|
|
126567
126771
|
};
|
|
126772
|
+
export declare type JiraProjectPolicyProjectFilter = {
|
|
126773
|
+
complianceState?: InputMaybe<JiraProjectPolicyComplianceState>;
|
|
126774
|
+
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
126775
|
+
};
|
|
126568
126776
|
export declare type JiraProjectPolicyRuleViolation = {
|
|
126569
126777
|
__typename?: 'JiraProjectPolicyRuleViolation';
|
|
126570
126778
|
domain?: Maybe<Scalars['String']['output']>;
|
|
@@ -126589,7 +126797,6 @@ export declare type JiraProjectPolicyRuleViolationEdge = {
|
|
|
126589
126797
|
};
|
|
126590
126798
|
export declare type JiraProjectPolicyRuleViolationFilter = {
|
|
126591
126799
|
domains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
126592
|
-
ruleIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
126593
126800
|
};
|
|
126594
126801
|
export declare type JiraProjectRecommendation = {
|
|
126595
126802
|
__typename?: 'JiraProjectRecommendation';
|
|
@@ -128083,6 +128290,7 @@ export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
|
128083
128290
|
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
128084
128291
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128085
128292
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
128293
|
+
sortInput?: InputMaybe<JiraLinkedWorkItemsSortInput>;
|
|
128086
128294
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
128087
128295
|
};
|
|
128088
128296
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
@@ -129050,6 +129258,18 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
129050
129258
|
errors?: Maybe<Array<MutationError>>;
|
|
129051
129259
|
success: Scalars['Boolean']['output'];
|
|
129052
129260
|
};
|
|
129261
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnInput = {
|
|
129262
|
+
agentAccountId: Scalars['ID']['input'];
|
|
129263
|
+
columnId: Scalars['ID']['input'];
|
|
129264
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
129265
|
+
};
|
|
129266
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = {
|
|
129267
|
+
__typename?: 'JiraRemoveAgentFromBoardViewStatusColumnPayload';
|
|
129268
|
+
boardView?: Maybe<JiraBoardView>;
|
|
129269
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
129270
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129271
|
+
success: Scalars['Boolean']['output'];
|
|
129272
|
+
};
|
|
129053
129273
|
export declare type JiraRemoveCustomFieldDefaultContextOptionInput = {
|
|
129054
129274
|
mapToOption?: InputMaybe<JiraCustomFieldDefaultContextOptionReference>;
|
|
129055
129275
|
optionId: Scalars['Long']['input'];
|
|
@@ -131615,6 +131835,16 @@ export declare type JiraSetProjectAccessRequestAllowedPropertyInput = {
|
|
|
131615
131835
|
cloudId: Scalars['ID']['input'];
|
|
131616
131836
|
projectId: Scalars['ID']['input'];
|
|
131617
131837
|
};
|
|
131838
|
+
export declare type JiraSetProjectPolicyAssociatedProjectsInput = {
|
|
131839
|
+
policyId: Scalars['ID']['input'];
|
|
131840
|
+
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
131841
|
+
};
|
|
131842
|
+
export declare type JiraSetProjectPolicyAssociatedProjectsPayload = Payload & {
|
|
131843
|
+
__typename?: 'JiraSetProjectPolicyAssociatedProjectsPayload';
|
|
131844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
131845
|
+
projectPolicy?: Maybe<JiraProjectPolicy>;
|
|
131846
|
+
success: Scalars['Boolean']['output'];
|
|
131847
|
+
};
|
|
131618
131848
|
export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
|
|
131619
131849
|
deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
|
|
131620
131850
|
projectId: Scalars['ID']['input'];
|
|
@@ -132595,6 +132825,7 @@ export declare type JiraSubscription = {
|
|
|
132595
132825
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
132596
132826
|
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
132597
132827
|
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
132828
|
+
onAiAgentSessionCreateV3?: Maybe<JiraAgentSessionCreateEvent>;
|
|
132598
132829
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
132599
132830
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
132600
132831
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -132648,6 +132879,10 @@ export declare type JiraSubscriptionOnAiAgentSessionCreateV2Args = {
|
|
|
132648
132879
|
cloudId: Scalars['ID']['input'];
|
|
132649
132880
|
issueId: Scalars['String']['input'];
|
|
132650
132881
|
};
|
|
132882
|
+
export declare type JiraSubscriptionOnAiAgentSessionCreateV3Args = {
|
|
132883
|
+
cloudId: Scalars['ID']['input'];
|
|
132884
|
+
issueId: Scalars['String']['input'];
|
|
132885
|
+
};
|
|
132651
132886
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
132652
132887
|
cloudId: Scalars['ID']['input'];
|
|
132653
132888
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -136723,6 +136958,11 @@ export declare enum JsmChannelsPlanNodeType {
|
|
|
136723
136958
|
Condition = "CONDITION",
|
|
136724
136959
|
Step = "STEP"
|
|
136725
136960
|
}
|
|
136961
|
+
export declare type JsmChannelsPreviewModeConfiguration = {
|
|
136962
|
+
__typename?: 'JsmChannelsPreviewModeConfiguration';
|
|
136963
|
+
enabled: Scalars['Boolean']['output'];
|
|
136964
|
+
};
|
|
136965
|
+
export declare type JsmChannelsPreviewModeResult = JsmChannelsPreviewModeConfiguration | QueryError;
|
|
136726
136966
|
export declare type JsmChannelsProjectQueryFilter = {
|
|
136727
136967
|
projectId: Scalars['String']['input'];
|
|
136728
136968
|
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -136827,6 +137067,18 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
|
136827
137067
|
title: Scalars['String']['output'];
|
|
136828
137068
|
url: Scalars['String']['output'];
|
|
136829
137069
|
};
|
|
137070
|
+
export declare type JsmChannelsSetPreviewModeInput = {
|
|
137071
|
+
enabled: Scalars['Boolean']['input'];
|
|
137072
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
137073
|
+
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
137074
|
+
};
|
|
137075
|
+
export declare type JsmChannelsSetPreviewModePayload = Payload & {
|
|
137076
|
+
__typename?: 'JsmChannelsSetPreviewModePayload';
|
|
137077
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137078
|
+
jsmChannelsExperienceConfiguration?: Maybe<JsmChannelsExperienceConfiguration>;
|
|
137079
|
+
previewMode?: Maybe<JsmChannelsPreviewModeConfiguration>;
|
|
137080
|
+
success: Scalars['Boolean']['output'];
|
|
137081
|
+
};
|
|
136830
137082
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
136831
137083
|
__typename?: 'JsmChannelsStepNode';
|
|
136832
137084
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -138018,6 +138270,8 @@ export declare type KitsuneCustomerConnection = KitsuneConnection & {
|
|
|
138018
138270
|
__typename?: 'KitsuneCustomerConnection';
|
|
138019
138271
|
edges: Array<KitsuneCustomerEdge>;
|
|
138020
138272
|
pageInfo: PageInfo;
|
|
138273
|
+
totalCount: Scalars['Int']['output'];
|
|
138274
|
+
totalHasBeenDetermined: Scalars['Boolean']['output'];
|
|
138021
138275
|
};
|
|
138022
138276
|
export declare type KitsuneCustomerCustomField = {
|
|
138023
138277
|
__typename?: 'KitsuneCustomerCustomField';
|
|
@@ -138152,6 +138406,7 @@ export declare type KitsuneField = Node & {
|
|
|
138152
138406
|
__typename?: 'KitsuneField';
|
|
138153
138407
|
description?: Maybe<Scalars['String']['output']>;
|
|
138154
138408
|
entityType: KitsuneEntityType;
|
|
138409
|
+
entityTypes: Array<KitsuneEntityType>;
|
|
138155
138410
|
id: Scalars['ID']['output'];
|
|
138156
138411
|
name: Scalars['String']['output'];
|
|
138157
138412
|
type: KitsuneFieldType;
|
|
@@ -143437,6 +143692,11 @@ export declare type MarketplaceStoreApprovalDetails = {
|
|
|
143437
143692
|
__typename?: 'MarketplaceStoreApprovalDetails';
|
|
143438
143693
|
approvalTimestamp?: Maybe<Scalars['String']['output']>;
|
|
143439
143694
|
};
|
|
143695
|
+
export declare type MarketplaceStoreAsset = {
|
|
143696
|
+
__typename?: 'MarketplaceStoreAsset';
|
|
143697
|
+
altText?: Maybe<Scalars['String']['output']>;
|
|
143698
|
+
id: Scalars['String']['output'];
|
|
143699
|
+
};
|
|
143440
143700
|
export declare enum MarketplaceStoreAtlassianProductHostingType {
|
|
143441
143701
|
Cloud = "CLOUD",
|
|
143442
143702
|
Datacenter = "DATACENTER",
|
|
@@ -143516,6 +143776,25 @@ export declare type MarketplaceStoreCcpaDetails = {
|
|
|
143516
143776
|
business?: Maybe<MarketplaceStoreBusiness>;
|
|
143517
143777
|
serviceProvider?: Maybe<MarketplaceStoreServiceProvider>;
|
|
143518
143778
|
};
|
|
143779
|
+
export declare type MarketplaceStoreCapabilities = {
|
|
143780
|
+
__typename?: 'MarketplaceStoreCapabilities';
|
|
143781
|
+
heading?: Maybe<Scalars['String']['output']>;
|
|
143782
|
+
values?: Maybe<Array<MarketplaceStoreCapabilityItem>>;
|
|
143783
|
+
};
|
|
143784
|
+
export declare type MarketplaceStoreCapabilityItem = {
|
|
143785
|
+
__typename?: 'MarketplaceStoreCapabilityItem';
|
|
143786
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
143787
|
+
image?: Maybe<MarketplaceStoreAsset>;
|
|
143788
|
+
title: Scalars['String']['output'];
|
|
143789
|
+
};
|
|
143790
|
+
export declare type MarketplaceStoreCapabilitySection = MarketplaceStoreLayoutSection & {
|
|
143791
|
+
__typename?: 'MarketplaceStoreCapabilitySection';
|
|
143792
|
+
capabilities?: Maybe<MarketplaceStoreCapabilities>;
|
|
143793
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
143794
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
143795
|
+
title: Scalars['String']['output'];
|
|
143796
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
143797
|
+
};
|
|
143519
143798
|
export declare type MarketplaceStoreCategoryHeroSection = {
|
|
143520
143799
|
__typename?: 'MarketplaceStoreCategoryHeroSection';
|
|
143521
143800
|
backgroundColor: Scalars['String']['output'];
|
|
@@ -144043,6 +144322,10 @@ export declare type MarketplaceStoreLayoutSection = {
|
|
|
144043
144322
|
title: Scalars['String']['output'];
|
|
144044
144323
|
};
|
|
144045
144324
|
export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
144325
|
+
BrowseAll = "BROWSE_ALL",
|
|
144326
|
+
Capability = "CAPABILITY",
|
|
144327
|
+
CategoryHero = "CATEGORY_HERO",
|
|
144328
|
+
CollectionHero = "COLLECTION_HERO",
|
|
144046
144329
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
144047
144330
|
ExploreObjects = "EXPLORE_OBJECTS",
|
|
144048
144331
|
Hero = "HERO",
|
|
@@ -144050,13 +144333,16 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
144050
144333
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
144051
144334
|
Spotlight = "SPOTLIGHT",
|
|
144052
144335
|
Statistics = "STATISTICS",
|
|
144336
|
+
TopUseCases = "TOP_USE_CASES",
|
|
144053
144337
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
144054
144338
|
}
|
|
144055
144339
|
export declare enum MarketplaceStoreLayoutSectionType {
|
|
144056
144340
|
Brand = "BRAND",
|
|
144341
|
+
Capability = "CAPABILITY",
|
|
144057
144342
|
Dark = "DARK",
|
|
144058
144343
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
144059
|
-
List = "LIST"
|
|
144344
|
+
List = "LIST",
|
|
144345
|
+
TopUseCases = "TOP_USE_CASES"
|
|
144060
144346
|
}
|
|
144061
144347
|
export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
144062
144348
|
Bounded = "BOUNDED",
|
|
@@ -144482,6 +144768,17 @@ export declare type MarketplaceStoreProductMigrationError = {
|
|
|
144482
144768
|
subCode?: Maybe<Scalars['String']['output']>;
|
|
144483
144769
|
};
|
|
144484
144770
|
export declare type MarketplaceStoreProductMigrationResponse = MarketplaceStoreProductMigration | MarketplaceStoreProductMigrationError;
|
|
144771
|
+
export declare type MarketplaceStoreProductTag = {
|
|
144772
|
+
__typename?: 'MarketplaceStoreProductTag';
|
|
144773
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
144774
|
+
id: Scalars['ID']['output'];
|
|
144775
|
+
name: Scalars['String']['output'];
|
|
144776
|
+
tagType?: Maybe<MarketplaceStoreProductTagType>;
|
|
144777
|
+
};
|
|
144778
|
+
export declare enum MarketplaceStoreProductTagType {
|
|
144779
|
+
Category = "CATEGORY",
|
|
144780
|
+
Keywords = "KEYWORDS"
|
|
144781
|
+
}
|
|
144485
144782
|
export declare type MarketplaceStoreProperties = {
|
|
144486
144783
|
__typename?: 'MarketplaceStoreProperties';
|
|
144487
144784
|
formStatus: MarketplaceStoreFormStatus;
|
|
@@ -144526,6 +144823,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
144526
144823
|
partnerByPartnerName?: Maybe<MarketplaceStoreSearchPartnerResponse>;
|
|
144527
144824
|
personalisedContextAndLayout: MarketplaceStorePersonalisedContextAndLayoutResponse;
|
|
144528
144825
|
privacyAndSecurity: MarketplaceStorePrivacyAndSecurityResponse;
|
|
144826
|
+
productTags?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
|
|
144529
144827
|
recommendationsSection?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
144530
144828
|
reviewSummary?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
144531
144829
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
@@ -144648,6 +144946,9 @@ export declare type MarketplaceStoreQueryApiPersonalisedContextAndLayoutArgs = {
|
|
|
144648
144946
|
export declare type MarketplaceStoreQueryApiPrivacyAndSecurityArgs = {
|
|
144649
144947
|
input: MarketplaceStorePrivacyAndSecurityRequestInput;
|
|
144650
144948
|
};
|
|
144949
|
+
export declare type MarketplaceStoreQueryApiProductTagsArgs = {
|
|
144950
|
+
tagType?: InputMaybe<MarketplaceStoreProductTagType>;
|
|
144951
|
+
};
|
|
144651
144952
|
export declare type MarketplaceStoreQueryApiRecommendationsSectionArgs = {
|
|
144652
144953
|
usecase: MarketplaceStoreRecommendationsUsecase;
|
|
144653
144954
|
};
|
|
@@ -144841,6 +145142,18 @@ export declare type MarketplaceStoreThirdPartyInformation = {
|
|
|
144841
145142
|
isEndUserDataShared?: Maybe<Scalars['Boolean']['output']>;
|
|
144842
145143
|
thirdPartyDetails?: Maybe<Array<Maybe<MarketplaceStoreThirdPartyDetails>>>;
|
|
144843
145144
|
};
|
|
145145
|
+
export declare type MarketplaceStoreTopUseCasesSection = MarketplaceStoreLayoutSection & {
|
|
145146
|
+
__typename?: 'MarketplaceStoreTopUseCasesSection';
|
|
145147
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
145148
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
145149
|
+
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
145150
|
+
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
145151
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
145152
|
+
title: Scalars['String']['output'];
|
|
145153
|
+
topUseCases?: Maybe<MarketplaceStoreUseCases>;
|
|
145154
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
145155
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
145156
|
+
};
|
|
144844
145157
|
export declare type MarketplaceStoreTrustSignalDataRules = {
|
|
144845
145158
|
__typename?: 'MarketplaceStoreTrustSignalDataRules';
|
|
144846
145159
|
name: Scalars['String']['output'];
|
|
@@ -144888,6 +145201,17 @@ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
|
144888
145201
|
status: Scalars['String']['output'];
|
|
144889
145202
|
version: Scalars['Int']['output'];
|
|
144890
145203
|
};
|
|
145204
|
+
export declare type MarketplaceStoreUseCaseValue = {
|
|
145205
|
+
__typename?: 'MarketplaceStoreUseCaseValue';
|
|
145206
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
145207
|
+
id: Scalars['String']['output'];
|
|
145208
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
145209
|
+
};
|
|
145210
|
+
export declare type MarketplaceStoreUseCases = {
|
|
145211
|
+
__typename?: 'MarketplaceStoreUseCases';
|
|
145212
|
+
heading?: Maybe<Scalars['String']['output']>;
|
|
145213
|
+
values?: Maybe<Array<MarketplaceStoreUseCaseValue>>;
|
|
145214
|
+
};
|
|
144891
145215
|
export declare type MarketplaceStoreUserPreferences = {
|
|
144892
145216
|
__typename?: 'MarketplaceStoreUserPreferences';
|
|
144893
145217
|
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -145068,6 +145392,22 @@ export declare type MercuryAddCustomFieldDefinitionOptionsPayload = Payload & {
|
|
|
145068
145392
|
errors?: Maybe<Array<MutationError>>;
|
|
145069
145393
|
success: Scalars['Boolean']['output'];
|
|
145070
145394
|
};
|
|
145395
|
+
export declare type MercuryAddOrganizationMembershipInput = {
|
|
145396
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
145397
|
+
organizationId: Scalars['ID']['input'];
|
|
145398
|
+
startDate: Scalars['Date']['input'];
|
|
145399
|
+
userId: Scalars['ID']['input'];
|
|
145400
|
+
};
|
|
145401
|
+
export declare type MercuryAddOrganizationMembershipsInput = {
|
|
145402
|
+
cloudId: Scalars['ID']['input'];
|
|
145403
|
+
organizationMemberships: Array<MercuryAddOrganizationMembershipInput>;
|
|
145404
|
+
};
|
|
145405
|
+
export declare type MercuryAddOrganizationMembershipsPayload = Payload & {
|
|
145406
|
+
__typename?: 'MercuryAddOrganizationMembershipsPayload';
|
|
145407
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145408
|
+
organizationMemberships?: Maybe<Array<MercuryOrganizationMembership>>;
|
|
145409
|
+
success: Scalars['Boolean']['output'];
|
|
145410
|
+
};
|
|
145071
145411
|
export declare type MercuryAddTagsToEntityInput = {
|
|
145072
145412
|
entityId: Scalars['ID']['input'];
|
|
145073
145413
|
tagIds: Array<Scalars['ID']['input']>;
|
|
@@ -145130,6 +145470,7 @@ export declare type MercuryApplication = {
|
|
|
145130
145470
|
__typename?: 'MercuryApplication';
|
|
145131
145471
|
id: Scalars['ID']['output'];
|
|
145132
145472
|
key: Scalars['String']['output'];
|
|
145473
|
+
logo: MercuryMultiResolutionIcon;
|
|
145133
145474
|
name: Scalars['String']['output'];
|
|
145134
145475
|
};
|
|
145135
145476
|
export declare type MercuryApplicationConnection = {
|
|
@@ -145435,6 +145776,31 @@ export declare type MercuryChangeProposalTagsArgs = {
|
|
|
145435
145776
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
145436
145777
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145437
145778
|
};
|
|
145779
|
+
export declare type MercuryChangeProposalActivityHistory = Node & {
|
|
145780
|
+
__typename?: 'MercuryChangeProposalActivityHistory';
|
|
145781
|
+
changeProposalId: Scalars['ID']['output'];
|
|
145782
|
+
eventTimestamp: Scalars['String']['output'];
|
|
145783
|
+
eventType: MercuryChangeProposalEventType;
|
|
145784
|
+
fields?: Maybe<Array<Maybe<MercuryChangeProposalUpdatedField>>>;
|
|
145785
|
+
fieldsChanged?: Maybe<Array<Maybe<MercuryChangeProposalField>>>;
|
|
145786
|
+
id: Scalars['ID']['output'];
|
|
145787
|
+
user?: Maybe<User>;
|
|
145788
|
+
};
|
|
145789
|
+
export declare type MercuryChangeProposalActivityHistoryConnection = {
|
|
145790
|
+
__typename?: 'MercuryChangeProposalActivityHistoryConnection';
|
|
145791
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalActivityHistoryEdge>>>;
|
|
145792
|
+
pageInfo: PageInfo;
|
|
145793
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
145794
|
+
};
|
|
145795
|
+
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
145796
|
+
export declare type MercuryChangeProposalActivityHistoryEdge = {
|
|
145797
|
+
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
145798
|
+
cursor: Scalars['String']['output'];
|
|
145799
|
+
node?: Maybe<MercuryChangeProposalActivityHistory>;
|
|
145800
|
+
};
|
|
145801
|
+
export declare type MercuryChangeProposalActivitySort = {
|
|
145802
|
+
order: SortOrder;
|
|
145803
|
+
};
|
|
145438
145804
|
export declare type MercuryChangeProposalComment = {
|
|
145439
145805
|
__typename?: 'MercuryChangeProposalComment';
|
|
145440
145806
|
content: Scalars['String']['output'];
|
|
@@ -145482,6 +145848,22 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
145482
145848
|
cursor: Scalars['String']['output'];
|
|
145483
145849
|
node?: Maybe<MercuryChangeProposal>;
|
|
145484
145850
|
};
|
|
145851
|
+
export declare enum MercuryChangeProposalEventType {
|
|
145852
|
+
Create = "CREATE",
|
|
145853
|
+
Update = "UPDATE"
|
|
145854
|
+
}
|
|
145855
|
+
export declare enum MercuryChangeProposalField {
|
|
145856
|
+
Description = "DESCRIPTION",
|
|
145857
|
+
FocusArea = "FOCUS_AREA",
|
|
145858
|
+
Impact = "IMPACT",
|
|
145859
|
+
LinkedGoal = "LINKED_GOAL",
|
|
145860
|
+
LinkedWork = "LINKED_WORK",
|
|
145861
|
+
Name = "NAME",
|
|
145862
|
+
Owner = "OWNER",
|
|
145863
|
+
Status = "STATUS",
|
|
145864
|
+
TargetBenefit = "TARGET_BENEFIT",
|
|
145865
|
+
TargetRoi = "TARGET_ROI"
|
|
145866
|
+
}
|
|
145485
145867
|
export declare type MercuryChangeProposalFundSummary = {
|
|
145486
145868
|
__typename?: 'MercuryChangeProposalFundSummary';
|
|
145487
145869
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -145581,14 +145963,31 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
145581
145963
|
id: Scalars['ID']['output'];
|
|
145582
145964
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
145583
145965
|
};
|
|
145584
|
-
export declare type
|
|
145966
|
+
export declare type MercuryChangeProposalUpdatedField = {
|
|
145967
|
+
__typename?: 'MercuryChangeProposalUpdatedField';
|
|
145968
|
+
field: MercuryChangeProposalField;
|
|
145969
|
+
newData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
145970
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
145971
|
+
oldData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
145972
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
145973
|
+
};
|
|
145974
|
+
export declare type MercuryChangeProposalViewSetting = {
|
|
145975
|
+
__typename?: 'MercuryChangeProposalViewSetting';
|
|
145976
|
+
key: Scalars['String']['output'];
|
|
145977
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
145978
|
+
};
|
|
145979
|
+
export declare type MercuryChangeProposalViewSettingInput = {
|
|
145980
|
+
key: Scalars['String']['input'];
|
|
145981
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
145982
|
+
};
|
|
145983
|
+
export declare type MercuryChangeProposalsView = Node & {
|
|
145585
145984
|
__typename?: 'MercuryChangeProposalsView';
|
|
145586
145985
|
createdBy?: Maybe<User>;
|
|
145587
145986
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
145588
145987
|
id: Scalars['ID']['output'];
|
|
145589
145988
|
name: Scalars['String']['output'];
|
|
145590
145989
|
priorities?: Maybe<MercuryChangeProposalRankConnection>;
|
|
145591
|
-
settings?: Maybe<Array<Maybe<
|
|
145990
|
+
settings?: Maybe<Array<Maybe<MercuryChangeProposalViewSetting>>>;
|
|
145592
145991
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
145593
145992
|
updatedBy?: Maybe<User>;
|
|
145594
145993
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -145715,6 +146114,7 @@ export declare type MercuryCostItem = Node & {
|
|
|
145715
146114
|
focusAreaId?: Maybe<MercuryFocusArea>;
|
|
145716
146115
|
id: Scalars['ID']['output'];
|
|
145717
146116
|
investmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
146117
|
+
linkedWork?: Maybe<Array<Maybe<MercuryLinkedWork>>>;
|
|
145718
146118
|
name: Scalars['String']['output'];
|
|
145719
146119
|
tags?: Maybe<MercuryHomeTagConnection>;
|
|
145720
146120
|
};
|
|
@@ -145891,7 +146291,7 @@ export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
|
145891
146291
|
export declare type MercuryCreateChangeProposalsViewInput = {
|
|
145892
146292
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145893
146293
|
name: Scalars['String']['input'];
|
|
145894
|
-
settings?: InputMaybe<Array<InputMaybe<
|
|
146294
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryChangeProposalViewSettingInput>>>;
|
|
145895
146295
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
145896
146296
|
};
|
|
145897
146297
|
export declare type MercuryCreateChangeProposalsViewSettingPayload = Payload & {
|
|
@@ -147880,6 +148280,8 @@ export declare enum MercuryImportExecutionErrorEntityType {
|
|
|
147880
148280
|
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
147881
148281
|
FundsBenefitItem = "FUNDS_BENEFIT_ITEM",
|
|
147882
148282
|
FundsCostItem = "FUNDS_COST_ITEM",
|
|
148283
|
+
Organization = "ORGANIZATION",
|
|
148284
|
+
OrganizationLink = "ORGANIZATION_LINK",
|
|
147883
148285
|
PeopleBudget = "PEOPLE_BUDGET",
|
|
147884
148286
|
Team = "TEAM",
|
|
147885
148287
|
TeamAllocation = "TEAM_ALLOCATION"
|
|
@@ -148370,6 +148772,14 @@ export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
|
148370
148772
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
148371
148773
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
148372
148774
|
};
|
|
148775
|
+
export declare type MercuryMultiResolutionIcon = {
|
|
148776
|
+
__typename?: 'MercuryMultiResolutionIcon';
|
|
148777
|
+
defaultUrl: Scalars['URL']['output'];
|
|
148778
|
+
large?: Maybe<Scalars['URL']['output']>;
|
|
148779
|
+
medium?: Maybe<Scalars['URL']['output']>;
|
|
148780
|
+
small?: Maybe<Scalars['URL']['output']>;
|
|
148781
|
+
xlarge?: Maybe<Scalars['URL']['output']>;
|
|
148782
|
+
};
|
|
148373
148783
|
export declare type MercuryMultiSelectCustomField = MercuryCustomField & {
|
|
148374
148784
|
__typename?: 'MercuryMultiSelectCustomField';
|
|
148375
148785
|
createdBy?: Maybe<User>;
|
|
@@ -148694,6 +149104,7 @@ export declare type MercuryNormalizedWorkProjectType = MercuryProjectType & {
|
|
|
148694
149104
|
};
|
|
148695
149105
|
export declare type MercuryNormalizedWorkResult = MercuryNormalizedWork | MercuryRestrictedWork;
|
|
148696
149106
|
export declare type MercuryNormalizedWorkSearchFiltersInput = {
|
|
149107
|
+
applicationName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
148697
149108
|
owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
148698
149109
|
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
148699
149110
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -148701,6 +149112,7 @@ export declare type MercuryNormalizedWorkSearchFiltersInput = {
|
|
|
148701
149112
|
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
148702
149113
|
};
|
|
148703
149114
|
export declare enum MercuryNormalizedWorkSortField {
|
|
149115
|
+
ApplicationName = "APPLICATION_NAME",
|
|
148704
149116
|
FocusAreaId = "FOCUS_AREA_ID",
|
|
148705
149117
|
Key = "KEY",
|
|
148706
149118
|
Name = "NAME",
|
|
@@ -148765,6 +149177,7 @@ export declare type MercuryOrganization = Node & {
|
|
|
148765
149177
|
aboutContent: MercuryOrganizationAbout;
|
|
148766
149178
|
aggregatedOrganizationStatusCount?: Maybe<MercuryAggregatedOrganizationStatusCount>;
|
|
148767
149179
|
archived: Scalars['Boolean']['output'];
|
|
149180
|
+
capacitySummaries?: Maybe<MercuryOrganizationCapacitySummary>;
|
|
148768
149181
|
createdDate: Scalars['String']['output'];
|
|
148769
149182
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
148770
149183
|
draft: Scalars['Boolean']['output'];
|
|
@@ -148775,6 +149188,7 @@ export declare type MercuryOrganization = Node & {
|
|
|
148775
149188
|
linkedGoalSummary?: Maybe<MercuryOrganizationLinkedGoalSummary>;
|
|
148776
149189
|
linkedGoals?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
148777
149190
|
linkedWorkSummary?: Maybe<MercuryOrganizationLinkedWorkSummary>;
|
|
149191
|
+
memberships?: Maybe<MercuryOrganizationMembershipConnection>;
|
|
148778
149192
|
name: Scalars['String']['output'];
|
|
148779
149193
|
organizationLinks?: Maybe<MercuryOrganizationLinks>;
|
|
148780
149194
|
organizationStatusUpdates?: Maybe<MercuryOrganizationStatusUpdateConnection>;
|
|
@@ -148796,6 +149210,15 @@ export declare type MercuryOrganization = Node & {
|
|
|
148796
149210
|
watchers?: Maybe<MercuryOrganizationUserConnection>;
|
|
148797
149211
|
watching: Scalars['Boolean']['output'];
|
|
148798
149212
|
};
|
|
149213
|
+
export declare type MercuryOrganizationCapacitySummariesArgs = {
|
|
149214
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
149215
|
+
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
149216
|
+
};
|
|
149217
|
+
export declare type MercuryOrganizationMembershipsArgs = {
|
|
149218
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
149219
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
149220
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
149221
|
+
};
|
|
148799
149222
|
export declare type MercuryOrganizationOrganizationStatusUpdatesArgs = {
|
|
148800
149223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
148801
149224
|
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -148820,6 +149243,18 @@ export declare type MercuryOrganizationAbout = {
|
|
|
148820
149243
|
__typename?: 'MercuryOrganizationAbout';
|
|
148821
149244
|
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
148822
149245
|
};
|
|
149246
|
+
export declare type MercuryOrganizationCapacity = {
|
|
149247
|
+
__typename?: 'MercuryOrganizationCapacity';
|
|
149248
|
+
count: Scalars['BigDecimal']['output'];
|
|
149249
|
+
endDate: Scalars['Date']['output'];
|
|
149250
|
+
startDate: Scalars['Date']['output'];
|
|
149251
|
+
};
|
|
149252
|
+
export declare type MercuryOrganizationCapacitySummary = {
|
|
149253
|
+
__typename?: 'MercuryOrganizationCapacitySummary';
|
|
149254
|
+
directCapacitySummaries?: Maybe<Array<MercuryOrganizationCapacity>>;
|
|
149255
|
+
organizationId: Scalars['ID']['output'];
|
|
149256
|
+
totalCapacitySummaries?: Maybe<Array<MercuryOrganizationCapacity>>;
|
|
149257
|
+
};
|
|
148823
149258
|
export declare type MercuryOrganizationConnection = {
|
|
148824
149259
|
__typename?: 'MercuryOrganizationConnection';
|
|
148825
149260
|
edges?: Maybe<Array<Maybe<MercuryOrganizationEdge>>>;
|
|
@@ -148916,6 +149351,29 @@ export declare type MercuryOrganizationListSummary = {
|
|
|
148916
149351
|
input?: Maybe<Scalars['String']['output']>;
|
|
148917
149352
|
summary?: Maybe<Scalars['String']['output']>;
|
|
148918
149353
|
};
|
|
149354
|
+
export declare type MercuryOrganizationMembership = Node & {
|
|
149355
|
+
__typename?: 'MercuryOrganizationMembership';
|
|
149356
|
+
createdBy?: Maybe<User>;
|
|
149357
|
+
createdDate: Scalars['DateTime']['output'];
|
|
149358
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
149359
|
+
id: Scalars['ID']['output'];
|
|
149360
|
+
organization?: Maybe<MercuryOrganization>;
|
|
149361
|
+
startDate: Scalars['Date']['output'];
|
|
149362
|
+
updatedBy?: Maybe<User>;
|
|
149363
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
149364
|
+
user?: Maybe<User>;
|
|
149365
|
+
};
|
|
149366
|
+
export declare type MercuryOrganizationMembershipConnection = {
|
|
149367
|
+
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
149368
|
+
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
149369
|
+
pageInfo: PageInfo;
|
|
149370
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
149371
|
+
};
|
|
149372
|
+
export declare type MercuryOrganizationMembershipEdge = {
|
|
149373
|
+
__typename?: 'MercuryOrganizationMembershipEdge';
|
|
149374
|
+
cursor: Scalars['String']['output'];
|
|
149375
|
+
node?: Maybe<MercuryOrganizationMembership>;
|
|
149376
|
+
};
|
|
148919
149377
|
export declare enum MercuryOrganizationPermission {
|
|
148920
149378
|
Archive = "ARCHIVE",
|
|
148921
149379
|
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
@@ -149161,6 +149619,7 @@ export declare enum MercuryOrganizationViewType {
|
|
|
149161
149619
|
export declare type MercuryOrganizationsMutationApi = {
|
|
149162
149620
|
__typename?: 'MercuryOrganizationsMutationApi';
|
|
149163
149621
|
addOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
149622
|
+
addOrganizationMemberships?: Maybe<MercuryAddOrganizationMembershipsPayload>;
|
|
149164
149623
|
addWatcherToOrganization?: Maybe<MercuryAddWatcherToOrganizationPayload>;
|
|
149165
149624
|
archiveOrganization?: Maybe<MercuryArchiveOrganizationPayload>;
|
|
149166
149625
|
assignUserAccessToOrganization?: Maybe<MercuryAssignUserAccessToOrganizationPayload>;
|
|
@@ -149189,6 +149648,7 @@ export declare type MercuryOrganizationsMutationApi = {
|
|
|
149189
149648
|
linkOrganizationsToOrganizationView?: Maybe<MercuryLinkOrganizationsToOrganizationViewPayload>;
|
|
149190
149649
|
publishOrganization?: Maybe<MercuryPublishOrganizationPayload>;
|
|
149191
149650
|
recreateOrganizationViewOrganizations?: Maybe<MercuryUpdateOrganizationViewPayload>;
|
|
149651
|
+
removeOrganizationMembership?: Maybe<MercuryRemoveOrganizationMembershipPayload>;
|
|
149192
149652
|
removeUserAccessToOrganization?: Maybe<MercuryRemoveUserAccessToOrganizationPayload>;
|
|
149193
149653
|
removeWatcherFromOrganization?: Maybe<MercuryRemoveWatcherFromOrganizationPayload>;
|
|
149194
149654
|
reorderOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
@@ -149206,6 +149666,8 @@ export declare type MercuryOrganizationsMutationApi = {
|
|
|
149206
149666
|
updateOrganizationCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
149207
149667
|
updateOrganizationCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
149208
149668
|
updateOrganizationHierarchyName?: Maybe<MercuryUpdateOrganizationHierarchyPayload>;
|
|
149669
|
+
updateOrganizationMembershipEndDate?: Maybe<MercuryUpdateOrganizationMembershipPayload>;
|
|
149670
|
+
updateOrganizationMembershipStartDate?: Maybe<MercuryUpdateOrganizationMembershipPayload>;
|
|
149209
149671
|
updateOrganizationName?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
149210
149672
|
updateOrganizationOwner?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
149211
149673
|
updateOrganizationStatusUpdate?: Maybe<MercuryUpdateOrganizationStatusUpdatePayload>;
|
|
@@ -149218,6 +149680,9 @@ export declare type MercuryOrganizationsMutationApi = {
|
|
|
149218
149680
|
export declare type MercuryOrganizationsMutationApiAddOrganizationCustomFieldDefinitionOptionsArgs = {
|
|
149219
149681
|
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
149220
149682
|
};
|
|
149683
|
+
export declare type MercuryOrganizationsMutationApiAddOrganizationMembershipsArgs = {
|
|
149684
|
+
input: MercuryAddOrganizationMembershipsInput;
|
|
149685
|
+
};
|
|
149221
149686
|
export declare type MercuryOrganizationsMutationApiAddWatcherToOrganizationArgs = {
|
|
149222
149687
|
input: MercuryAddWatcherToOrganizationInput;
|
|
149223
149688
|
};
|
|
@@ -149302,6 +149767,9 @@ export declare type MercuryOrganizationsMutationApiPublishOrganizationArgs = {
|
|
|
149302
149767
|
export declare type MercuryOrganizationsMutationApiRecreateOrganizationViewOrganizationsArgs = {
|
|
149303
149768
|
input: MercuryRecreateOrganizationViewOrganizationsInput;
|
|
149304
149769
|
};
|
|
149770
|
+
export declare type MercuryOrganizationsMutationApiRemoveOrganizationMembershipArgs = {
|
|
149771
|
+
input: MercuryRemoveOrganizationMembershipInput;
|
|
149772
|
+
};
|
|
149305
149773
|
export declare type MercuryOrganizationsMutationApiRemoveUserAccessToOrganizationArgs = {
|
|
149306
149774
|
input: MercuryRemoveUserAccessToOrganizationInput;
|
|
149307
149775
|
};
|
|
@@ -149353,6 +149821,12 @@ export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomField
|
|
|
149353
149821
|
export declare type MercuryOrganizationsMutationApiUpdateOrganizationHierarchyNameArgs = {
|
|
149354
149822
|
input: MercuryUpdateOrganizationHierarchyNameInput;
|
|
149355
149823
|
};
|
|
149824
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationMembershipEndDateArgs = {
|
|
149825
|
+
input: MercuryUpdateOrganizationMembershipEndDateInput;
|
|
149826
|
+
};
|
|
149827
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationMembershipStartDateArgs = {
|
|
149828
|
+
input: MercuryUpdateOrganizationMembershipStartDateInput;
|
|
149829
|
+
};
|
|
149356
149830
|
export declare type MercuryOrganizationsMutationApiUpdateOrganizationNameArgs = {
|
|
149357
149831
|
input: MercuryUpdateOrganizationNameInput;
|
|
149358
149832
|
};
|
|
@@ -149386,6 +149860,7 @@ export declare type MercuryOrganizationsQueryApi = {
|
|
|
149386
149860
|
organizationHierarchies?: Maybe<Array<MercuryOrganizationHierarchy>>;
|
|
149387
149861
|
organizationHierarchiesSearch?: Maybe<MercuryOrganizationHierarchyConnection>;
|
|
149388
149862
|
organizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
149863
|
+
organizationMemberships?: Maybe<Array<MercuryOrganizationMembership>>;
|
|
149389
149864
|
organizationStatusTransitions?: Maybe<Array<MercuryOrganizationStatusTransition>>;
|
|
149390
149865
|
organizationStatusUpdates?: Maybe<Array<MercuryOrganizationStatusUpdate>>;
|
|
149391
149866
|
organizationTypes?: Maybe<Array<Maybe<MercuryOrganizationType>>>;
|
|
@@ -149434,6 +149909,9 @@ export declare type MercuryOrganizationsQueryApiOrganizationHierarchiesSearchArg
|
|
|
149434
149909
|
export declare type MercuryOrganizationsQueryApiOrganizationHierarchyArgs = {
|
|
149435
149910
|
id: Scalars['ID']['input'];
|
|
149436
149911
|
};
|
|
149912
|
+
export declare type MercuryOrganizationsQueryApiOrganizationMembershipsArgs = {
|
|
149913
|
+
ids: Array<Scalars['ID']['input']>;
|
|
149914
|
+
};
|
|
149437
149915
|
export declare type MercuryOrganizationsQueryApiOrganizationStatusTransitionsArgs = {
|
|
149438
149916
|
cloudId: Scalars['ID']['input'];
|
|
149439
149917
|
};
|
|
@@ -149531,7 +150009,7 @@ export declare enum MercuryPermission {
|
|
|
149531
150009
|
ViewStrategicEvent = "VIEW_STRATEGIC_EVENT",
|
|
149532
150010
|
Write = "WRITE"
|
|
149533
150011
|
}
|
|
149534
|
-
export declare type MercuryPortfolio =
|
|
150012
|
+
export declare type MercuryPortfolio = {
|
|
149535
150013
|
__typename?: 'MercuryPortfolio';
|
|
149536
150014
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
149537
150015
|
allocations?: Maybe<MercuryPortfolioAllocations>;
|
|
@@ -150185,6 +150663,15 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
|
150185
150663
|
id: Scalars['ID']['input'];
|
|
150186
150664
|
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
150187
150665
|
};
|
|
150666
|
+
export declare type MercuryRemoveOrganizationMembershipInput = {
|
|
150667
|
+
id: Scalars['ID']['input'];
|
|
150668
|
+
};
|
|
150669
|
+
export declare type MercuryRemoveOrganizationMembershipPayload = Payload & {
|
|
150670
|
+
__typename?: 'MercuryRemoveOrganizationMembershipPayload';
|
|
150671
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150672
|
+
id: Scalars['ID']['output'];
|
|
150673
|
+
success: Scalars['Boolean']['output'];
|
|
150674
|
+
};
|
|
150188
150675
|
export declare type MercuryRemoveTagsFromEntityInput = {
|
|
150189
150676
|
entityId: Scalars['ID']['input'];
|
|
150190
150677
|
tagIds: Array<Scalars['ID']['input']>;
|
|
@@ -150214,7 +150701,7 @@ export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
|
150214
150701
|
success: Scalars['Boolean']['output'];
|
|
150215
150702
|
};
|
|
150216
150703
|
export declare type MercuryRemoveUserAccessToOrganizationInput = {
|
|
150217
|
-
|
|
150704
|
+
organizationId: Scalars['ID']['input'];
|
|
150218
150705
|
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
150219
150706
|
};
|
|
150220
150707
|
export declare type MercuryRemoveUserAccessToOrganizationPayload = Payload & {
|
|
@@ -151137,6 +151624,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventTargetD
|
|
|
151137
151624
|
export declare type MercuryStrategicEventsQueryApi = {
|
|
151138
151625
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
151139
151626
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
151627
|
+
changeProposalActivityHistoryByIds?: Maybe<Array<Maybe<MercuryChangeProposalActivityHistory>>>;
|
|
151140
151628
|
changeProposalCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
151141
151629
|
changeProposalImpactValues: Array<MercuryChangeProposalImpact>;
|
|
151142
151630
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
@@ -151157,6 +151645,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
151157
151645
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
151158
151646
|
restrictedChangeProposalsSearch?: Maybe<MercuryRestrictedChangeProposalConnection>;
|
|
151159
151647
|
restrictedStrategicEventsSearch?: Maybe<MercuryRestrictedStrategicEventConnection>;
|
|
151648
|
+
searchChangeProposalActivityHistory?: Maybe<MercuryChangeProposalActivityHistoryConnection>;
|
|
151160
151649
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
151161
151650
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
151162
151651
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
@@ -151165,6 +151654,9 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
151165
151654
|
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
151166
151655
|
id: Scalars['ID']['input'];
|
|
151167
151656
|
};
|
|
151657
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalActivityHistoryByIdsArgs = {
|
|
151658
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151659
|
+
};
|
|
151168
151660
|
export declare type MercuryStrategicEventsQueryApiChangeProposalCustomFieldDefinitionsSearchArgs = {
|
|
151169
151661
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151170
151662
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -151251,6 +151743,13 @@ export declare type MercuryStrategicEventsQueryApiRestrictedStrategicEventsSearc
|
|
|
151251
151743
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
151252
151744
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
151253
151745
|
};
|
|
151746
|
+
export declare type MercuryStrategicEventsQueryApiSearchChangeProposalActivityHistoryArgs = {
|
|
151747
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
151748
|
+
cloudId: Scalars['ID']['input'];
|
|
151749
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
151750
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
151751
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalActivitySort>>>;
|
|
151752
|
+
};
|
|
151254
151753
|
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
151255
151754
|
id: Scalars['ID']['input'];
|
|
151256
151755
|
};
|
|
@@ -151684,7 +152183,7 @@ export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
|
|
|
151684
152183
|
};
|
|
151685
152184
|
export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
151686
152185
|
id: Scalars['ID']['input'];
|
|
151687
|
-
settings?: InputMaybe<Array<InputMaybe<
|
|
152186
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryChangeProposalViewSettingInput>>>;
|
|
151688
152187
|
};
|
|
151689
152188
|
export declare type MercuryUpdateChangeProposalsViewSettingsPayload = {
|
|
151690
152189
|
__typename?: 'MercuryUpdateChangeProposalsViewSettingsPayload';
|
|
@@ -151920,6 +152419,20 @@ export declare type MercuryUpdateOrganizationHierarchyPayload = Payload & {
|
|
|
151920
152419
|
success: Scalars['Boolean']['output'];
|
|
151921
152420
|
updatedOrganizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
151922
152421
|
};
|
|
152422
|
+
export declare type MercuryUpdateOrganizationMembershipEndDateInput = {
|
|
152423
|
+
endDate?: InputMaybe<Scalars['Date']['input']>;
|
|
152424
|
+
id: Scalars['ID']['input'];
|
|
152425
|
+
};
|
|
152426
|
+
export declare type MercuryUpdateOrganizationMembershipPayload = Payload & {
|
|
152427
|
+
__typename?: 'MercuryUpdateOrganizationMembershipPayload';
|
|
152428
|
+
errors?: Maybe<Array<MutationError>>;
|
|
152429
|
+
organizationMembership?: Maybe<MercuryOrganizationMembership>;
|
|
152430
|
+
success: Scalars['Boolean']['output'];
|
|
152431
|
+
};
|
|
152432
|
+
export declare type MercuryUpdateOrganizationMembershipStartDateInput = {
|
|
152433
|
+
id: Scalars['ID']['input'];
|
|
152434
|
+
startDate: Scalars['Date']['input'];
|
|
152435
|
+
};
|
|
151923
152436
|
export declare type MercuryUpdateOrganizationNameInput = {
|
|
151924
152437
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
151925
152438
|
id: Scalars['ID']['input'];
|
|
@@ -152134,19 +152647,6 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
152134
152647
|
success: Scalars['Boolean']['output'];
|
|
152135
152648
|
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
152136
152649
|
};
|
|
152137
|
-
export declare type MercuryView = {
|
|
152138
|
-
name: Scalars['String']['output'];
|
|
152139
|
-
settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
|
|
152140
|
-
};
|
|
152141
|
-
export declare type MercuryViewSetting = {
|
|
152142
|
-
__typename?: 'MercuryViewSetting';
|
|
152143
|
-
key: Scalars['String']['output'];
|
|
152144
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
152145
|
-
};
|
|
152146
|
-
export declare type MercuryViewSettingInput = {
|
|
152147
|
-
key: Scalars['String']['input'];
|
|
152148
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
|
152149
|
-
};
|
|
152150
152650
|
export declare enum MercuryViewType {
|
|
152151
152651
|
HierarchyView = "HIERARCHY_VIEW",
|
|
152152
152652
|
RankingView = "RANKING_VIEW"
|
|
@@ -152237,6 +152737,7 @@ export declare type MercuryWorkspaceContext = {
|
|
|
152237
152737
|
};
|
|
152238
152738
|
export declare type MercuryWorkspaceSettings = {
|
|
152239
152739
|
__typename?: 'MercuryWorkspaceSettings';
|
|
152740
|
+
focusAreaRankingEnabled: Scalars['Boolean']['output'];
|
|
152240
152741
|
laborCostEnabled: Scalars['Boolean']['output'];
|
|
152241
152742
|
managedTeamsOnlyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
152242
152743
|
};
|
|
@@ -152532,22 +153033,12 @@ export declare type Mutation = {
|
|
|
152532
153033
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
152533
153034
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
152534
153035
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
152535
|
-
|
|
153036
|
+
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
152536
153037
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
152537
|
-
agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
|
|
152538
|
-
agentWorkspace_createCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigCreateResponse>;
|
|
152539
|
-
agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
|
|
152540
|
-
agentWorkspace_createHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionCreateResponse>;
|
|
152541
153038
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
152542
153039
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
152543
|
-
agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
|
|
152544
|
-
agentWorkspace_deleteCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigDeleteResponse>;
|
|
152545
|
-
agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
|
|
152546
|
-
agentWorkspace_deleteHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionDeleteResponse>;
|
|
152547
153040
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
152548
153041
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
152549
|
-
agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
|
|
152550
|
-
agentWorkspace_deleteUserSkill?: Maybe<AgentWorkspaceDeleteUserSkillPayload>;
|
|
152551
153042
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
152552
153043
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
152553
153044
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
@@ -152557,16 +153048,8 @@ export declare type Mutation = {
|
|
|
152557
153048
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
152558
153049
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
152559
153050
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
152560
|
-
agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
|
|
152561
|
-
agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
|
|
152562
|
-
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
|
|
152563
|
-
agentWorkspace_updateCatalogConfig?: Maybe<AgentWorkspaceCatalogConfigUpdateResponse>;
|
|
152564
|
-
agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
|
|
152565
|
-
agentWorkspace_updateHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionUpdateResponse>;
|
|
152566
153051
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
152567
153052
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
152568
|
-
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
152569
|
-
agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
|
|
152570
153053
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
152571
153054
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
152572
153055
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
@@ -152574,6 +153057,7 @@ export declare type Mutation = {
|
|
|
152574
153057
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
152575
153058
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
152576
153059
|
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
153060
|
+
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
152577
153061
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
152578
153062
|
appStorage?: Maybe<AppStorageMutation>;
|
|
152579
153063
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -152597,6 +153081,7 @@ export declare type Mutation = {
|
|
|
152597
153081
|
assetsDM_createDataDictionaryGroupValue?: Maybe<AssetsDmCreateDataDictionaryGroupValueResponse>;
|
|
152598
153082
|
assetsDM_createDataSource?: Maybe<AssetsDmCreateDataSourcePayload>;
|
|
152599
153083
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
153084
|
+
assetsDM_createDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
152600
153085
|
assetsDM_createDefaultCleansingRule?: Maybe<AssetsDmCreateDefaultCleansingRuleResponse>;
|
|
152601
153086
|
assetsDM_createObjectAttribute?: Maybe<AssetsDmCreateObjectAttributeResponse>;
|
|
152602
153087
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
@@ -152615,6 +153100,7 @@ export declare type Mutation = {
|
|
|
152615
153100
|
assetsDM_deleteDataSource?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
152616
153101
|
assetsDM_deleteDataSourceConfig?: Maybe<AssetsDmDeleteDataSourceConfigPayload>;
|
|
152617
153102
|
assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
|
|
153103
|
+
assetsDM_deleteDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
152618
153104
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
152619
153105
|
assetsDM_deleteDefaultCleansingRule?: Maybe<AssetsDmDeleteDefaultCleansingRuleResponse>;
|
|
152620
153106
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
@@ -152623,6 +153109,7 @@ export declare type Mutation = {
|
|
|
152623
153109
|
assetsDM_editDataDictionary?: Maybe<AssetsDmEditDataDictionaryResponse>;
|
|
152624
153110
|
assetsDM_editDataDictionaryGroup?: Maybe<AssetsDmEditDataDictionaryGroupResponse>;
|
|
152625
153111
|
assetsDM_editDataDictionaryGroupValue?: Maybe<AssetsDmEditDataDictionaryGroupValueResponse>;
|
|
153112
|
+
assetsDM_editDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
152626
153113
|
assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
|
|
152627
153114
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
152628
153115
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
@@ -152684,8 +153171,10 @@ export declare type Mutation = {
|
|
|
152684
153171
|
avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
|
|
152685
153172
|
avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
|
|
152686
153173
|
avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
|
|
153174
|
+
avp_starDashboard?: Maybe<AvpStarDashboardPayload>;
|
|
152687
153175
|
avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
|
|
152688
153176
|
avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
|
|
153177
|
+
avp_unstarDashboard?: Maybe<AvpUnstarDashboardPayload>;
|
|
152689
153178
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
152690
153179
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
152691
153180
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
@@ -152700,6 +153189,7 @@ export declare type Mutation = {
|
|
|
152700
153189
|
avpanalytics_createModel?: Maybe<AvpAnalyticsCreateModelPayload>;
|
|
152701
153190
|
avpanalytics_deleteMetric?: Maybe<AvpAnalyticsDeleteMetricPayload>;
|
|
152702
153191
|
avpanalytics_deleteModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
|
|
153192
|
+
avpanalytics_discardMetricUpdates?: Maybe<AvpAnalyticsDiscardMetricUpdatesPayload>;
|
|
152703
153193
|
avpanalytics_discardModelUpdates?: Maybe<AvpAnalyticsDiscardModelUpdatesPayload>;
|
|
152704
153194
|
avpanalytics_updateMetric?: Maybe<AvpAnalyticsUpdateMetricPayload>;
|
|
152705
153195
|
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
@@ -152720,6 +153210,7 @@ export declare type Mutation = {
|
|
|
152720
153210
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
152721
153211
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
152722
153212
|
ccp?: Maybe<CcpMutationApi>;
|
|
153213
|
+
ccp_updateAllowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationUpdateResult>>>;
|
|
152723
153214
|
champion?: Maybe<UnifiedChampionMutation>;
|
|
152724
153215
|
changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
152725
153216
|
changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
@@ -152858,6 +153349,7 @@ export declare type Mutation = {
|
|
|
152858
153349
|
confluence_updateContentAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
152859
153350
|
confluence_updateContentAppearance?: Maybe<ConfluenceUpdateContentAppearancePayload>;
|
|
152860
153351
|
confluence_updateContentApproval?: Maybe<ConfluenceContentApprovalPayload>;
|
|
153352
|
+
confluence_updateContentApprovalsSpaceSettingConfig?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
|
|
152861
153353
|
confluence_updateContentDirectRestrictions?: Maybe<ConfluenceUpdateContentDirectRestrictionsPayload>;
|
|
152862
153354
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
152863
153355
|
confluence_updateCoverPicture?: Maybe<ConfluenceUpdateCoverPicturePayload>;
|
|
@@ -152914,6 +153406,10 @@ export declare type Mutation = {
|
|
|
152914
153406
|
cpls_deleteContributorWorkAssociationSuggestionForUser?: Maybe<CplsDeleteContributorWorkAssociationSuggestionPayload>;
|
|
152915
153407
|
cpls_deleteWorkScopeAssociations?: Maybe<CplsDeleteWorkScopeAssociationsPayload>;
|
|
152916
153408
|
cpls_importCapacityData?: Maybe<CplsImportCapacityDataPayload>;
|
|
153409
|
+
cpls_reorderContributor?: Maybe<CplsReorderContributorPayload>;
|
|
153410
|
+
cpls_reorderContributorWork?: Maybe<CplsReorderContributorWorkPayload>;
|
|
153411
|
+
cpls_reorderWork?: Maybe<CplsReorderWorkPayload>;
|
|
153412
|
+
cpls_reorderWorkContributor?: Maybe<CplsReorderWorkContributorPayload>;
|
|
152917
153413
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
152918
153414
|
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
152919
153415
|
cpls_updateViewSettings?: Maybe<CplsUpdateViewSettingsPayload>;
|
|
@@ -152987,6 +153483,7 @@ export declare type Mutation = {
|
|
|
152987
153483
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
152988
153484
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
152989
153485
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
153486
|
+
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
152990
153487
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
152991
153488
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
152992
153489
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -153129,6 +153626,7 @@ export declare type Mutation = {
|
|
|
153129
153626
|
goals_removeNumericCustomFieldValue?: Maybe<TownsquareGoalsRemoveNumericCustomFieldValuePayload>;
|
|
153130
153627
|
goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
|
|
153131
153628
|
goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
|
|
153629
|
+
goals_removeWatchers?: Maybe<TownsquareGoalsRemoveWatchersPayload>;
|
|
153132
153630
|
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
153133
153631
|
goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
|
|
153134
153632
|
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
@@ -153154,13 +153652,15 @@ export declare type Mutation = {
|
|
|
153154
153652
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
153155
153653
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
153156
153654
|
gravity_addReaction?: Maybe<GravityAddReactionPayload>;
|
|
153655
|
+
gravity_createViewFromInlinedTemplate?: Maybe<GravityCreateViewFromTemplatePayload>;
|
|
153157
153656
|
gravity_createViewFromTemplate: GravityCreateViewFromTemplatePayload;
|
|
153158
153657
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
153159
153658
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
153160
|
-
|
|
153659
|
+
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
153161
153660
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
153162
153661
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
153163
153662
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
153663
|
+
growthUnifiedProfile_createSnIdProfile?: Maybe<GrowthUnifiedProfileCreateSnIdProfileResponse>;
|
|
153164
153664
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
153165
153665
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
153166
153666
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
@@ -153181,6 +153681,7 @@ export declare type Mutation = {
|
|
|
153181
153681
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
153182
153682
|
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
153183
153683
|
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
153684
|
+
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
153184
153685
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
153185
153686
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
153186
153687
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -153220,6 +153721,7 @@ export declare type Mutation = {
|
|
|
153220
153721
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
153221
153722
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
153222
153723
|
jira_publishTimelineViewConfig?: Maybe<JiraPublishTimelineViewConfigPayload>;
|
|
153724
|
+
jira_removeAgentFromBoardViewStatusColumn?: Maybe<JiraRemoveAgentFromBoardViewStatusColumnPayload>;
|
|
153223
153725
|
jira_removeCustomFieldTranslation?: Maybe<JiraRemoveCustomFieldTranslationPayload>;
|
|
153224
153726
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
153225
153727
|
jira_removeIssueFromSprint?: Maybe<JiraRemoveIssueFromSprintPayload>;
|
|
@@ -153328,6 +153830,7 @@ export declare type Mutation = {
|
|
|
153328
153830
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
153329
153831
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
153330
153832
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
153833
|
+
jsmChannels_setPreviewMode?: Maybe<JsmChannelsSetPreviewModePayload>;
|
|
153331
153834
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
153332
153835
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
153333
153836
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -154061,54 +154564,24 @@ export declare type MutationAgentWorkspace_ArchiveSkillArgs = {
|
|
|
154061
154564
|
export declare type MutationAgentWorkspace_AssignAgentToGapArgs = {
|
|
154062
154565
|
input: AgentWorkspaceAssignAgentToGapInput;
|
|
154063
154566
|
};
|
|
154064
|
-
export declare type
|
|
154065
|
-
input:
|
|
154567
|
+
export declare type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
154568
|
+
input: AgentWorkspaceAssignAgentsToSkillInput;
|
|
154066
154569
|
};
|
|
154067
154570
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
154068
154571
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
154069
154572
|
};
|
|
154070
|
-
export declare type MutationAgentWorkspace_CreateCatalogArgs = {
|
|
154071
|
-
input: AgentWorkspaceCreateCatalogInput;
|
|
154072
|
-
};
|
|
154073
|
-
export declare type MutationAgentWorkspace_CreateCatalogConfigArgs = {
|
|
154074
|
-
input: AgentWorkspaceCreateCatalogConfigInput;
|
|
154075
|
-
};
|
|
154076
|
-
export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
|
|
154077
|
-
input: AgentWorkspaceCreateCatalogTypeInput;
|
|
154078
|
-
};
|
|
154079
|
-
export declare type MutationAgentWorkspace_CreateHierarchyDefinitionArgs = {
|
|
154080
|
-
input: AgentWorkspaceCreateHierarchyDefinitionInput;
|
|
154081
|
-
};
|
|
154082
154573
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
154083
154574
|
input: AgentWorkspaceCreateScheduleInput;
|
|
154084
154575
|
};
|
|
154085
154576
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
154086
154577
|
input: AgentWorkspaceSkillCreateInput;
|
|
154087
154578
|
};
|
|
154088
|
-
export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
|
|
154089
|
-
input: AgentWorkspaceCatalogDeleteInput;
|
|
154090
|
-
};
|
|
154091
|
-
export declare type MutationAgentWorkspace_DeleteCatalogConfigArgs = {
|
|
154092
|
-
input: AgentWorkspaceCatalogConfigDeleteInput;
|
|
154093
|
-
};
|
|
154094
|
-
export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
|
|
154095
|
-
input: AgentWorkspaceCatalogTypeDeleteInput;
|
|
154096
|
-
};
|
|
154097
|
-
export declare type MutationAgentWorkspace_DeleteHierarchyDefinitionArgs = {
|
|
154098
|
-
input: AgentWorkspaceDeleteHierarchyDefinitionInput;
|
|
154099
|
-
};
|
|
154100
154579
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
154101
154580
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
154102
154581
|
};
|
|
154103
154582
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
154104
154583
|
input: AgentWorkspaceDeleteShiftInput;
|
|
154105
154584
|
};
|
|
154106
|
-
export declare type MutationAgentWorkspace_DeleteSkillArgs = {
|
|
154107
|
-
input: AgentWorkspaceSkillDeleteInput;
|
|
154108
|
-
};
|
|
154109
|
-
export declare type MutationAgentWorkspace_DeleteUserSkillArgs = {
|
|
154110
|
-
input: AgentWorkspaceDeleteUserSkillInput;
|
|
154111
|
-
};
|
|
154112
154585
|
export declare type MutationAgentWorkspace_EditShiftArgs = {
|
|
154113
154586
|
input: AgentWorkspaceEditShiftInput;
|
|
154114
154587
|
};
|
|
@@ -154138,36 +154611,12 @@ export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
|
154138
154611
|
export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
|
|
154139
154612
|
input: AgentWorkspaceStartBulkImportInput;
|
|
154140
154613
|
};
|
|
154141
|
-
export declare type MutationAgentWorkspace_SubscribeSkillArgs = {
|
|
154142
|
-
input: AgentWorkspaceSubscribeSkillInput;
|
|
154143
|
-
};
|
|
154144
|
-
export declare type MutationAgentWorkspace_UnsubscribeSkillArgs = {
|
|
154145
|
-
input: AgentWorkspaceUnsubscribeSkillInput;
|
|
154146
|
-
};
|
|
154147
|
-
export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
|
|
154148
|
-
input: AgentWorkspaceUpdateCatalogInput;
|
|
154149
|
-
};
|
|
154150
|
-
export declare type MutationAgentWorkspace_UpdateCatalogConfigArgs = {
|
|
154151
|
-
input: AgentWorkspaceUpdateCatalogConfigInput;
|
|
154152
|
-
};
|
|
154153
|
-
export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
|
|
154154
|
-
input: AgentWorkspaceUpdateCatalogTypeInput;
|
|
154155
|
-
};
|
|
154156
|
-
export declare type MutationAgentWorkspace_UpdateHierarchyDefinitionArgs = {
|
|
154157
|
-
input: AgentWorkspaceUpdateHierarchyDefinitionInput;
|
|
154158
|
-
};
|
|
154159
154614
|
export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
154160
154615
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
154161
154616
|
};
|
|
154162
154617
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
154163
154618
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
154164
154619
|
};
|
|
154165
|
-
export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
154166
|
-
input: AgentWorkspaceSkillUpdateInput;
|
|
154167
|
-
};
|
|
154168
|
-
export declare type MutationAgentWorkspace_UpdateSkillProficiencyArgs = {
|
|
154169
|
-
input: AgentWorkspaceUpdateSkillProficiencyInput;
|
|
154170
|
-
};
|
|
154171
154620
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
154172
154621
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
154173
154622
|
};
|
|
@@ -154192,6 +154641,10 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
154192
154641
|
export declare type MutationAiops_CreateInvestigationArgs = {
|
|
154193
154642
|
input: AiOpsCreateInvestigationInput;
|
|
154194
154643
|
};
|
|
154644
|
+
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
154645
|
+
cloudId: Scalars['ID']['input'];
|
|
154646
|
+
input: AiOpsTriggerInvestigationInput;
|
|
154647
|
+
};
|
|
154195
154648
|
export declare type MutationAppStorage_AdminArgs = {
|
|
154196
154649
|
appId: Scalars['ID']['input'];
|
|
154197
154650
|
};
|
|
@@ -154281,6 +154734,11 @@ export declare type MutationAssetsDm_CreateDataSourceTypeArgs = {
|
|
|
154281
154734
|
input: AssetsDmCreateDataSourceTypeInput;
|
|
154282
154735
|
workspaceId: Scalars['String']['input'];
|
|
154283
154736
|
};
|
|
154737
|
+
export declare type MutationAssetsDm_CreateDateFormatArgs = {
|
|
154738
|
+
cloudId: Scalars['ID']['input'];
|
|
154739
|
+
input: AssetsDmCreateDateFormatInput;
|
|
154740
|
+
workspaceId: Scalars['ID']['input'];
|
|
154741
|
+
};
|
|
154284
154742
|
export declare type MutationAssetsDm_CreateDefaultCleansingRuleArgs = {
|
|
154285
154743
|
cloudId: Scalars['ID']['input'];
|
|
154286
154744
|
input: AssetsDmCreateDefaultCleansingRuleInput;
|
|
@@ -154383,6 +154841,11 @@ export declare type MutationAssetsDm_DeleteDataSourceTypeArgs = {
|
|
|
154383
154841
|
dataSourceTypeId: Scalars['ID']['input'];
|
|
154384
154842
|
workspaceId: Scalars['String']['input'];
|
|
154385
154843
|
};
|
|
154844
|
+
export declare type MutationAssetsDm_DeleteDateFormatArgs = {
|
|
154845
|
+
cloudId: Scalars['ID']['input'];
|
|
154846
|
+
dateFormatId: Scalars['ID']['input'];
|
|
154847
|
+
workspaceId: Scalars['ID']['input'];
|
|
154848
|
+
};
|
|
154386
154849
|
export declare type MutationAssetsDm_DeleteDefaultAttributeMappingArgs = {
|
|
154387
154850
|
cloudId: Scalars['ID']['input'];
|
|
154388
154851
|
defaultObjectAttributeMappingId: Scalars['ID']['input'];
|
|
@@ -154423,6 +154886,11 @@ export declare type MutationAssetsDm_EditDataDictionaryGroupValueArgs = {
|
|
|
154423
154886
|
input: AssetsDmEditDataDictionaryGroupValueInput;
|
|
154424
154887
|
workspaceId: Scalars['ID']['input'];
|
|
154425
154888
|
};
|
|
154889
|
+
export declare type MutationAssetsDm_EditDateFormatArgs = {
|
|
154890
|
+
cloudId: Scalars['ID']['input'];
|
|
154891
|
+
input: AssetsDmEditDateFormatInput;
|
|
154892
|
+
workspaceId: Scalars['ID']['input'];
|
|
154893
|
+
};
|
|
154426
154894
|
export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
|
|
154427
154895
|
cloudId: Scalars['ID']['input'];
|
|
154428
154896
|
payload: AssetsDmEditDefaultAttributeMappingInput;
|
|
@@ -154645,12 +155113,18 @@ export declare type MutationAvp_RemoveDashboardElementArgs = {
|
|
|
154645
155113
|
export declare type MutationAvp_RemoveDashboardRowArgs = {
|
|
154646
155114
|
input: AvpRemoveDashboardRowInput;
|
|
154647
155115
|
};
|
|
155116
|
+
export declare type MutationAvp_StarDashboardArgs = {
|
|
155117
|
+
input: AvpStarDashboardInput;
|
|
155118
|
+
};
|
|
154648
155119
|
export declare type MutationAvp_ToggleCanvasElementExpandedArgs = {
|
|
154649
155120
|
input: AvpToggleCanvasElementExpandedInput;
|
|
154650
155121
|
};
|
|
154651
155122
|
export declare type MutationAvp_TrackDashboardViewArgs = {
|
|
154652
155123
|
input: AvpTrackDashboardViewInput;
|
|
154653
155124
|
};
|
|
155125
|
+
export declare type MutationAvp_UnstarDashboardArgs = {
|
|
155126
|
+
input: AvpUnstarDashboardInput;
|
|
155127
|
+
};
|
|
154654
155128
|
export declare type MutationAvp_UpdateChartArgs = {
|
|
154655
155129
|
input: AvpUpdateChartInput;
|
|
154656
155130
|
};
|
|
@@ -154697,6 +155171,10 @@ export declare type MutationAvpanalytics_DeleteModelArgs = {
|
|
|
154697
155171
|
cloudId: Scalars['ID']['input'];
|
|
154698
155172
|
input?: InputMaybe<AvpAnalyticsDeleteModelInput>;
|
|
154699
155173
|
};
|
|
155174
|
+
export declare type MutationAvpanalytics_DiscardMetricUpdatesArgs = {
|
|
155175
|
+
cloudId: Scalars['ID']['input'];
|
|
155176
|
+
input: AvpAnalyticsDiscardMetricUpdatesInput;
|
|
155177
|
+
};
|
|
154700
155178
|
export declare type MutationAvpanalytics_DiscardModelUpdatesArgs = {
|
|
154701
155179
|
cloudId: Scalars['ID']['input'];
|
|
154702
155180
|
input?: InputMaybe<AvpAnalyticsDiscardModelUpdatesInput>;
|
|
@@ -154760,6 +155238,10 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
154760
155238
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
154761
155239
|
spaceKey: Scalars['String']['input'];
|
|
154762
155240
|
};
|
|
155241
|
+
export declare type MutationCcp_UpdateAllowancePoolAllocationsArgs = {
|
|
155242
|
+
allocations: Array<CcpAllowancePoolAllocationUpdateInput>;
|
|
155243
|
+
poolId: Scalars['ID']['input'];
|
|
155244
|
+
};
|
|
154763
155245
|
export declare type MutationChangeManagement_DeleteLastRovoRiskAssessmentArgs = {
|
|
154764
155246
|
cloudId: Scalars['ID']['input'];
|
|
154765
155247
|
issueId: Scalars['String']['input'];
|
|
@@ -155272,6 +155754,11 @@ export declare type MutationConfluence_UpdateContentApprovalArgs = {
|
|
|
155272
155754
|
cloudId: Scalars['ID']['input'];
|
|
155273
155755
|
updateContentApprovalGraphQLInput: ConfluenceUpdateContentApprovalRequestInput;
|
|
155274
155756
|
};
|
|
155757
|
+
export declare type MutationConfluence_UpdateContentApprovalsSpaceSettingConfigArgs = {
|
|
155758
|
+
cloudId: Scalars['ID']['input'];
|
|
155759
|
+
config: ConfluenceContentApprovalsSpaceSettingConfigInput;
|
|
155760
|
+
spaceKey: Scalars['String']['input'];
|
|
155761
|
+
};
|
|
155275
155762
|
export declare type MutationConfluence_UpdateContentDirectRestrictionsArgs = {
|
|
155276
155763
|
cloudId: Scalars['ID']['input'];
|
|
155277
155764
|
input: ConfluenceUpdateContentDirectRestrictionsInput;
|
|
@@ -155478,6 +155965,18 @@ export declare type MutationCpls_DeleteWorkScopeAssociationsArgs = {
|
|
|
155478
155965
|
export declare type MutationCpls_ImportCapacityDataArgs = {
|
|
155479
155966
|
input: CplsImportCapacityDataInput;
|
|
155480
155967
|
};
|
|
155968
|
+
export declare type MutationCpls_ReorderContributorArgs = {
|
|
155969
|
+
input: CplsReorderContributorInput;
|
|
155970
|
+
};
|
|
155971
|
+
export declare type MutationCpls_ReorderContributorWorkArgs = {
|
|
155972
|
+
input: CplsReorderContributorWorkInput;
|
|
155973
|
+
};
|
|
155974
|
+
export declare type MutationCpls_ReorderWorkArgs = {
|
|
155975
|
+
input: CplsReorderWorkInput;
|
|
155976
|
+
};
|
|
155977
|
+
export declare type MutationCpls_ReorderWorkContributorArgs = {
|
|
155978
|
+
input: CplsReorderWorkContributorInput;
|
|
155979
|
+
};
|
|
155481
155980
|
export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
155482
155981
|
input: CplsUpdateCustomContributionTargetInput;
|
|
155483
155982
|
};
|
|
@@ -155747,6 +156246,10 @@ export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
|
155747
156246
|
cloudId: Scalars['ID']['input'];
|
|
155748
156247
|
input: CustomerServiceLiveChatSettingsInput;
|
|
155749
156248
|
};
|
|
156249
|
+
export declare type MutationCsm_UpsertHelpCenterMetadataArgs = {
|
|
156250
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
156251
|
+
input: CustomerServiceHelpCenterMetadataUpsertInput;
|
|
156252
|
+
};
|
|
155750
156253
|
export declare type MutationCustomerServiceArgs = {
|
|
155751
156254
|
cloudId: Scalars['ID']['input'];
|
|
155752
156255
|
};
|
|
@@ -156194,6 +156697,9 @@ export declare type MutationGoals_RemoveTextCustomFieldValueArgs = {
|
|
|
156194
156697
|
export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
|
|
156195
156698
|
input: TownsquareGoalsRemoveUserCustomFieldValueInput;
|
|
156196
156699
|
};
|
|
156700
|
+
export declare type MutationGoals_RemoveWatchersArgs = {
|
|
156701
|
+
input: TownsquareGoalsRemoveWatchersInput;
|
|
156702
|
+
};
|
|
156197
156703
|
export declare type MutationGoals_RevokeAccessArgs = {
|
|
156198
156704
|
input: TownsquareGoalRevokeAccessInput;
|
|
156199
156705
|
};
|
|
@@ -156264,6 +156770,10 @@ export declare type MutationGravity_AddReactionArgs = {
|
|
|
156264
156770
|
cloudId: Scalars['ID']['input'];
|
|
156265
156771
|
input: GravityAddReactionInput;
|
|
156266
156772
|
};
|
|
156773
|
+
export declare type MutationGravity_CreateViewFromInlinedTemplateArgs = {
|
|
156774
|
+
cloudId: Scalars['ID']['input'];
|
|
156775
|
+
input: GravityCreateViewFromInlinedTemplateInput;
|
|
156776
|
+
};
|
|
156267
156777
|
export declare type MutationGravity_CreateViewFromTemplateArgs = {
|
|
156268
156778
|
cloudId: Scalars['ID']['input'];
|
|
156269
156779
|
input: GravityCreateViewFromTemplateInput;
|
|
@@ -156276,9 +156786,9 @@ export declare type MutationGravity_DeleteReactionArgs = {
|
|
|
156276
156786
|
cloudId: Scalars['ID']['input'];
|
|
156277
156787
|
input: GravityDeleteReactionInput;
|
|
156278
156788
|
};
|
|
156279
|
-
export declare type
|
|
156789
|
+
export declare type MutationGravity_GenerateViewTemplateFromUserPromptArgs = {
|
|
156280
156790
|
cloudId: Scalars['ID']['input'];
|
|
156281
|
-
input:
|
|
156791
|
+
input: GravityGenerateViewTemplateFromUserPromptInput;
|
|
156282
156792
|
};
|
|
156283
156793
|
export declare type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
156284
156794
|
cloudId: Scalars['ID']['input'];
|
|
@@ -156290,6 +156800,9 @@ export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs =
|
|
|
156290
156800
|
export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
|
|
156291
156801
|
profile: GrowthUnifiedProfileCreateOrgProfileInput;
|
|
156292
156802
|
};
|
|
156803
|
+
export declare type MutationGrowthUnifiedProfile_CreateSnIdProfileArgs = {
|
|
156804
|
+
input: GrowthUnifiedProfileCreateSnIdProfileInput;
|
|
156805
|
+
};
|
|
156293
156806
|
export declare type MutationGrowthUnifiedProfile_CreateUnifiedProfileArgs = {
|
|
156294
156807
|
profile: GrowthUnifiedProfileCreateProfileInput;
|
|
156295
156808
|
};
|
|
@@ -156340,6 +156853,9 @@ export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
|
156340
156853
|
cloudId: Scalars['ID']['input'];
|
|
156341
156854
|
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
156342
156855
|
};
|
|
156856
|
+
export declare type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
156857
|
+
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
156858
|
+
};
|
|
156343
156859
|
export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
156344
156860
|
cloudId: Scalars['ID']['input'];
|
|
156345
156861
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -156466,6 +156982,9 @@ export declare type MutationJira_PublishIssueSearchConfigArgs = {
|
|
|
156466
156982
|
export declare type MutationJira_PublishTimelineViewConfigArgs = {
|
|
156467
156983
|
input: JiraPublishTimelineViewConfigInput;
|
|
156468
156984
|
};
|
|
156985
|
+
export declare type MutationJira_RemoveAgentFromBoardViewStatusColumnArgs = {
|
|
156986
|
+
input: JiraRemoveAgentFromBoardViewStatusColumnInput;
|
|
156987
|
+
};
|
|
156469
156988
|
export declare type MutationJira_RemoveCustomFieldTranslationArgs = {
|
|
156470
156989
|
cloudId: Scalars['ID']['input'];
|
|
156471
156990
|
input: JiraRemoveCustomFieldTranslationInput;
|
|
@@ -156816,6 +157335,11 @@ export declare type MutationJsmChannels_ExecuteResolutionPlanActionArgs = {
|
|
|
156816
157335
|
jiraProjectAri: Scalars['ID']['input'];
|
|
156817
157336
|
planId: Scalars['ID']['input'];
|
|
156818
157337
|
};
|
|
157338
|
+
export declare type MutationJsmChannels_SetPreviewModeArgs = {
|
|
157339
|
+
experience: JsmChannelsExperience;
|
|
157340
|
+
input: JsmChannelsSetPreviewModeInput;
|
|
157341
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
157342
|
+
};
|
|
156819
157343
|
export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
|
|
156820
157344
|
experience: JsmChannelsExperience;
|
|
156821
157345
|
input: JsmChannelsExperienceConfigurationInput;
|
|
@@ -156966,6 +157490,7 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
156966
157490
|
export declare type MutationKitsune_UpdateInsightArgs = {
|
|
156967
157491
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
156968
157492
|
id: Scalars['ID']['input'];
|
|
157493
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
156969
157494
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
156970
157495
|
};
|
|
156971
157496
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
@@ -161326,41 +161851,28 @@ export declare type Query = {
|
|
|
161326
161851
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
161327
161852
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
161328
161853
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
161854
|
+
agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
|
|
161329
161855
|
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
161330
161856
|
agentWorkspace_bucketServiceCategories?: Maybe<AgentWorkspaceServiceBucketingResult>;
|
|
161331
161857
|
agentWorkspace_bulkScheduleImportJob?: Maybe<AgentWorkspaceBulkImportJob>;
|
|
161332
161858
|
agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
|
|
161333
161859
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
161334
|
-
agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
|
|
161335
|
-
agentWorkspace_catalogConfig?: Maybe<AgentWorkspaceCatalogConfig>;
|
|
161336
|
-
agentWorkspace_catalogConfigs?: Maybe<AgentWorkspaceCatalogConfigConnection>;
|
|
161337
|
-
agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
|
|
161338
|
-
agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
|
|
161339
|
-
agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
|
|
161340
161860
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
161341
161861
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
161342
161862
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
161343
|
-
agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
|
|
161344
|
-
agentWorkspace_hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
161345
|
-
agentWorkspace_hierarchyDefinitions?: Maybe<AgentWorkspaceHierarchyDefinitionConnection>;
|
|
161346
161863
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
161347
|
-
|
|
161348
|
-
agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
|
|
161864
|
+
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
161349
161865
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
161350
161866
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
161351
161867
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
161352
161868
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
161353
161869
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
161354
161870
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
161355
|
-
|
|
161356
|
-
agentWorkspace_skillGaps?: Maybe<AgentWorkspaceSkillConnection>;
|
|
161871
|
+
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
161357
161872
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
161358
161873
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
161359
161874
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
161360
161875
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
161361
|
-
agentWorkspace_userSkill?: Maybe<AgentWorkspaceUserSkill>;
|
|
161362
|
-
agentWorkspace_userSkills?: Maybe<AgentWorkspaceUserSkillConnection>;
|
|
161363
|
-
agentWorkspace_usersBySkills?: Maybe<AgentWorkspaceUserConnection>;
|
|
161364
161876
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
161365
161877
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
161366
161878
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -161371,6 +161883,7 @@ export declare type Query = {
|
|
|
161371
161883
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
161372
161884
|
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
161373
161885
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
161886
|
+
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
161374
161887
|
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
161375
161888
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
161376
161889
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -161426,6 +161939,7 @@ export declare type Query = {
|
|
|
161426
161939
|
assetsDM_dataSourceTypes?: Maybe<AssetsDmDataSourceTypeConnection>;
|
|
161427
161940
|
assetsDM_dataSourcesList?: Maybe<AssetsDmDataSourcesList>;
|
|
161428
161941
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
161942
|
+
assetsDM_dateFormatsByTenant?: Maybe<Array<AssetsDmDateFormats>>;
|
|
161429
161943
|
assetsDM_defaultAttributeMapping?: Maybe<AssetsDmDefaultAttributeMappingResponse>;
|
|
161430
161944
|
assetsDM_defaultCleansingRule?: Maybe<AssetsDmDefaultCleansingRule>;
|
|
161431
161945
|
assetsDM_defaultCleansingRules?: Maybe<AssetsDmDefaultCleansingRuleConnection>;
|
|
@@ -161472,8 +161986,12 @@ export declare type Query = {
|
|
|
161472
161986
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
161473
161987
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
161474
161988
|
assetsVertical_itemMappings?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
161989
|
+
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
161475
161990
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
161476
161991
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
161992
|
+
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
161993
|
+
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
161994
|
+
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
161477
161995
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
161478
161996
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
161479
161997
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
@@ -161484,6 +162002,7 @@ export declare type Query = {
|
|
|
161484
162002
|
assets_bundle?: Maybe<AssetsBundleResult>;
|
|
161485
162003
|
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
161486
162004
|
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
162005
|
+
assets_instantiatedBundle?: Maybe<AssetsBundleInstantiationResult>;
|
|
161487
162006
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
161488
162007
|
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
161489
162008
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -161509,11 +162028,13 @@ export declare type Query = {
|
|
|
161509
162028
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
161510
162029
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
161511
162030
|
avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
|
|
162031
|
+
avp_getDashboardTemplateJson?: Maybe<Scalars['String']['output']>;
|
|
161512
162032
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
161513
162033
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
161514
162034
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
161515
162035
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
161516
162036
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
162037
|
+
avp_getRecentDashboards?: Maybe<Array<AvpDashboard>>;
|
|
161517
162038
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
161518
162039
|
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
161519
162040
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
@@ -161646,6 +162167,7 @@ export declare type Query = {
|
|
|
161646
162167
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
161647
162168
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
161648
162169
|
confluence_contentApprovalStatuses?: Maybe<Array<Maybe<ConfluenceApprovalsWorkflowStatus>>>;
|
|
162170
|
+
confluence_contentApprovalsSpaceSettingConfig?: Maybe<ConfluenceContentApprovalsSpaceSettingConfigPayload>;
|
|
161649
162171
|
confluence_contentPerformanceList?: Maybe<ConfluenceContentPerformanceConnection>;
|
|
161650
162172
|
confluence_contentPerformanceSummary?: Maybe<ConfluenceContentPerformanceSummary>;
|
|
161651
162173
|
confluence_contentPermissions?: Maybe<ConfluenceContentPermissions>;
|
|
@@ -161718,6 +162240,7 @@ export declare type Query = {
|
|
|
161718
162240
|
confluence_permittedClassificationLevelsForContent?: Maybe<ConfluencePermittedClassificationLevels>;
|
|
161719
162241
|
confluence_permittedClassificationLevelsForSpaceDefault?: Maybe<ConfluencePermittedClassificationLevels>;
|
|
161720
162242
|
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
162243
|
+
confluence_popularLabelsMacro?: Maybe<ConfluencePopularLabelEntryConnection>;
|
|
161721
162244
|
confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
|
|
161722
162245
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
161723
162246
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
@@ -161764,6 +162287,7 @@ export declare type Query = {
|
|
|
161764
162287
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
161765
162288
|
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
161766
162289
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
162290
|
+
confluence_validateConvertPageToMarkdownMode?: Maybe<ConfluenceValidateConvertPageToMarkdownModeResult>;
|
|
161767
162291
|
confluence_watermarkConfig?: Maybe<ConfluenceWatermarkConfig>;
|
|
161768
162292
|
confluence_whiteboardTemplates?: Maybe<PaginatedConfluenceWhiteboardTemplateInfoList>;
|
|
161769
162293
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
@@ -161839,6 +162363,7 @@ export declare type Query = {
|
|
|
161839
162363
|
csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
|
|
161840
162364
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
161841
162365
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
162366
|
+
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
161842
162367
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
161843
162368
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
161844
162369
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -161968,6 +162493,7 @@ export declare type Query = {
|
|
|
161968
162493
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
161969
162494
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
161970
162495
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
162496
|
+
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
161971
162497
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
161972
162498
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
161973
162499
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
@@ -162011,6 +162537,7 @@ export declare type Query = {
|
|
|
162011
162537
|
growthUnifiedProfile_getAccountProfile?: Maybe<GrowthUnifiedProfileAccountProfileResult>;
|
|
162012
162538
|
growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
162013
162539
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
162540
|
+
growthUnifiedProfile_getSnIdProfile?: Maybe<GrowthUnifiedProfileSnIdProfileResponse>;
|
|
162014
162541
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
162015
162542
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
162016
162543
|
growthUnifiedProfile_siteProfile?: Maybe<GrowthUnifiedProfileSiteProfileResult>;
|
|
@@ -162118,6 +162645,7 @@ export declare type Query = {
|
|
|
162118
162645
|
jsmChannels_getExperienceConfigurationByProjectIds: JsmChannelsExperienceConfigurationByProjectIdsResult;
|
|
162119
162646
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
162120
162647
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
162648
|
+
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
162121
162649
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
162122
162650
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
162123
162651
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
@@ -162302,6 +162830,7 @@ export declare type Query = {
|
|
|
162302
162830
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
162303
162831
|
projects_byKey?: Maybe<TownsquareProject>;
|
|
162304
162832
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
162833
|
+
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
162305
162834
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
162306
162835
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
162307
162836
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
@@ -163171,6 +163700,12 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
|
163171
163700
|
input: AgentWorkspaceAvailabilityInput;
|
|
163172
163701
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
163173
163702
|
};
|
|
163703
|
+
export declare type QueryAgentWorkspace_AvailabilityBypassingTeamLinkCheckArgs = {
|
|
163704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163705
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163706
|
+
input: AgentWorkspaceAvailabilityInputPayload;
|
|
163707
|
+
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
163708
|
+
};
|
|
163174
163709
|
export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
|
|
163175
163710
|
cloudId: Scalars['ID']['input'];
|
|
163176
163711
|
projectKey: Scalars['String']['input'];
|
|
@@ -163195,24 +163730,6 @@ export declare type QueryAgentWorkspace_CapacityArgs = {
|
|
|
163195
163730
|
export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
|
|
163196
163731
|
input: AgentWorkspaceCapacityInput;
|
|
163197
163732
|
};
|
|
163198
|
-
export declare type QueryAgentWorkspace_CatalogArgs = {
|
|
163199
|
-
input: AgentWorkspaceCatalogInput;
|
|
163200
|
-
};
|
|
163201
|
-
export declare type QueryAgentWorkspace_CatalogConfigArgs = {
|
|
163202
|
-
input: AgentWorkspaceCatalogConfigInput;
|
|
163203
|
-
};
|
|
163204
|
-
export declare type QueryAgentWorkspace_CatalogConfigsArgs = {
|
|
163205
|
-
input: AgentWorkspaceCatalogConfigsInput;
|
|
163206
|
-
};
|
|
163207
|
-
export declare type QueryAgentWorkspace_CatalogTypeArgs = {
|
|
163208
|
-
input: AgentWorkspaceCatalogTypeInput;
|
|
163209
|
-
};
|
|
163210
|
-
export declare type QueryAgentWorkspace_CatalogTypesArgs = {
|
|
163211
|
-
input: AgentWorkspaceCatalogTypesInput;
|
|
163212
|
-
};
|
|
163213
|
-
export declare type QueryAgentWorkspace_CatalogsArgs = {
|
|
163214
|
-
input: AgentWorkspaceCatalogsInput;
|
|
163215
|
-
};
|
|
163216
163733
|
export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
|
|
163217
163734
|
cloudId: Scalars['ID']['input'];
|
|
163218
163735
|
days?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -163227,24 +163744,12 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
163227
163744
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
163228
163745
|
projectAri: Scalars['ID']['input'];
|
|
163229
163746
|
};
|
|
163230
|
-
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
163231
|
-
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
163232
|
-
};
|
|
163233
|
-
export declare type QueryAgentWorkspace_HierarchyDefinitionArgs = {
|
|
163234
|
-
input: AgentWorkspaceHierarchyDefinitionInput;
|
|
163235
|
-
};
|
|
163236
|
-
export declare type QueryAgentWorkspace_HierarchyDefinitionsArgs = {
|
|
163237
|
-
input: AgentWorkspaceHierarchyDefinitionsInput;
|
|
163238
|
-
};
|
|
163239
163747
|
export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
163240
163748
|
cloudId: Scalars['ID']['input'];
|
|
163241
163749
|
projectId: Scalars['ID']['input'];
|
|
163242
163750
|
};
|
|
163243
|
-
export declare type
|
|
163244
|
-
input:
|
|
163245
|
-
};
|
|
163246
|
-
export declare type QueryAgentWorkspace_ProjectSkillsArgs = {
|
|
163247
|
-
input: AgentWorkspaceProjectSkillsInput;
|
|
163751
|
+
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
163752
|
+
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
163248
163753
|
};
|
|
163249
163754
|
export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
|
|
163250
163755
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -163278,14 +163783,15 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
163278
163783
|
input: AgentWorkspaceShiftsQueryInput;
|
|
163279
163784
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
163280
163785
|
};
|
|
163281
|
-
export declare type
|
|
163282
|
-
input
|
|
163283
|
-
|
|
163284
|
-
|
|
163285
|
-
input: AgentWorkspaceSkillGapsInput;
|
|
163786
|
+
export declare type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
163787
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163788
|
+
cloudId: Scalars['ID']['input'];
|
|
163789
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163286
163790
|
};
|
|
163287
163791
|
export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
163288
|
-
input
|
|
163792
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163793
|
+
cloudId: Scalars['ID']['input'];
|
|
163794
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163289
163795
|
};
|
|
163290
163796
|
export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
163291
163797
|
projectAri: Scalars['ID']['input'];
|
|
@@ -163299,15 +163805,6 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
|
|
|
163299
163805
|
input: AgentWorkspaceTeamSchedulesQueryInput;
|
|
163300
163806
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
163301
163807
|
};
|
|
163302
|
-
export declare type QueryAgentWorkspace_UserSkillArgs = {
|
|
163303
|
-
input: AgentWorkspaceUserSkillInput;
|
|
163304
|
-
};
|
|
163305
|
-
export declare type QueryAgentWorkspace_UserSkillsArgs = {
|
|
163306
|
-
input: AgentWorkspaceUserSkillsInput;
|
|
163307
|
-
};
|
|
163308
|
-
export declare type QueryAgentWorkspace_UsersBySkillsArgs = {
|
|
163309
|
-
input: AgentWorkspaceUsersBySkillsInput;
|
|
163310
|
-
};
|
|
163311
163808
|
export declare type QueryAgent_SessionAssociationQueryArgs = {
|
|
163312
163809
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163313
163810
|
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163355,6 +163852,11 @@ export declare type QueryAiops_IncidentSuggestionArgs = {
|
|
|
163355
163852
|
cloudId: Scalars['ID']['input'];
|
|
163356
163853
|
issueKey: Scalars['String']['input'];
|
|
163357
163854
|
};
|
|
163855
|
+
export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
163856
|
+
cloudId: Scalars['ID']['input'];
|
|
163857
|
+
entityId: Scalars['ID']['input'];
|
|
163858
|
+
entityType: AiOpsInvestigationSourceEntityType;
|
|
163859
|
+
};
|
|
163358
163860
|
export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
|
|
163359
163861
|
issueId: Scalars['ID']['input'];
|
|
163360
163862
|
};
|
|
@@ -163640,6 +164142,10 @@ export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
|
163640
164142
|
dataSourceId: Scalars['ID']['input'];
|
|
163641
164143
|
workspaceId: Scalars['ID']['input'];
|
|
163642
164144
|
};
|
|
164145
|
+
export declare type QueryAssetsDm_DateFormatsByTenantArgs = {
|
|
164146
|
+
cloudId: Scalars['ID']['input'];
|
|
164147
|
+
workspaceId: Scalars['ID']['input'];
|
|
164148
|
+
};
|
|
163643
164149
|
export declare type QueryAssetsDm_DefaultAttributeMappingArgs = {
|
|
163644
164150
|
cloudId: Scalars['ID']['input'];
|
|
163645
164151
|
filterBy?: InputMaybe<AssetsDmDefaultAttributeMappingFilterBy>;
|
|
@@ -163915,6 +164421,10 @@ export declare type QueryAssetsVertical_ItemMappingsArgs = {
|
|
|
163915
164421
|
spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
163916
164422
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
163917
164423
|
};
|
|
164424
|
+
export declare type QueryAssetsVertical_ModelItamAttributesArgs = {
|
|
164425
|
+
cloudId: Scalars['ID']['input'];
|
|
164426
|
+
workspaceId: Scalars['ID']['input'];
|
|
164427
|
+
};
|
|
163918
164428
|
export declare type QueryAssetsVertical_ModelObjectsArgs = {
|
|
163919
164429
|
cloudId: Scalars['ID']['input'];
|
|
163920
164430
|
input: AssetsVerticalModelObjectsInput;
|
|
@@ -163923,6 +164433,17 @@ export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
|
163923
164433
|
cloudId: Scalars['ID']['input'];
|
|
163924
164434
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
163925
164435
|
};
|
|
164436
|
+
export declare type QueryAssetsVertical_StockroomItamAttributesArgs = {
|
|
164437
|
+
cloudId: Scalars['ID']['input'];
|
|
164438
|
+
workspaceId: Scalars['ID']['input'];
|
|
164439
|
+
};
|
|
164440
|
+
export declare type QueryAssetsVertical_StockroomObjectTypesArgs = {
|
|
164441
|
+
cloudId: Scalars['ID']['input'];
|
|
164442
|
+
};
|
|
164443
|
+
export declare type QueryAssetsVertical_StockroomObjectsArgs = {
|
|
164444
|
+
cloudId: Scalars['ID']['input'];
|
|
164445
|
+
input: AssetsVerticalStockroomObjectsInput;
|
|
164446
|
+
};
|
|
163926
164447
|
export declare type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
163927
164448
|
cloudId: Scalars['ID']['input'];
|
|
163928
164449
|
id: Scalars['ID']['input'];
|
|
@@ -163973,6 +164494,10 @@ export declare type QueryAssets_CdmSchemasDefinitionsArgs = {
|
|
|
163973
164494
|
cloudId: Scalars['ID']['input'];
|
|
163974
164495
|
ids: Array<Scalars['ID']['input']>;
|
|
163975
164496
|
};
|
|
164497
|
+
export declare type QueryAssets_InstantiatedBundleArgs = {
|
|
164498
|
+
cloudId: Scalars['ID']['input'];
|
|
164499
|
+
type: AssetsBundleType;
|
|
164500
|
+
};
|
|
163976
164501
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
163977
164502
|
id: Scalars['ID']['input'];
|
|
163978
164503
|
};
|
|
@@ -164070,6 +164595,10 @@ export declare type QueryAvp_GetDashboardIdBySlugArgs = {
|
|
|
164070
164595
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
164071
164596
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
164072
164597
|
};
|
|
164598
|
+
export declare type QueryAvp_GetDashboardTemplateJsonArgs = {
|
|
164599
|
+
dashboardAri: Scalars['ID']['input'];
|
|
164600
|
+
templateType: Scalars['String']['input'];
|
|
164601
|
+
};
|
|
164073
164602
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
164074
164603
|
input: AvpGetDashboardTemplatesInput;
|
|
164075
164604
|
};
|
|
@@ -164082,6 +164611,7 @@ export declare type QueryAvp_GetDashboardsByStatusArgs = {
|
|
|
164082
164611
|
cloudId: Scalars['ID']['input'];
|
|
164083
164612
|
creatorAri?: InputMaybe<Scalars['String']['input']>;
|
|
164084
164613
|
first: Scalars['Int']['input'];
|
|
164614
|
+
starredOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
164085
164615
|
status: AvpDashboardStatus;
|
|
164086
164616
|
workspaceAri: Scalars['ID']['input'];
|
|
164087
164617
|
};
|
|
@@ -164091,6 +164621,11 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
|
164091
164621
|
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
164092
164622
|
input: AvpGetReadOnlyDashboardInput;
|
|
164093
164623
|
};
|
|
164624
|
+
export declare type QueryAvp_GetRecentDashboardsArgs = {
|
|
164625
|
+
cloudId: Scalars['ID']['input'];
|
|
164626
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
164627
|
+
workspaceAri: Scalars['ID']['input'];
|
|
164628
|
+
};
|
|
164094
164629
|
export declare type QueryAvp_GetStarredDashboardsArgs = {
|
|
164095
164630
|
cloudId: Scalars['ID']['input'];
|
|
164096
164631
|
principalAri: Scalars['ID']['input'];
|
|
@@ -164600,6 +165135,11 @@ export declare type QueryConfluence_ContentApprovalStatusesArgs = {
|
|
|
164600
165135
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
164601
165136
|
transitionType?: InputMaybe<ConfluenceApprovalTransitionType>;
|
|
164602
165137
|
};
|
|
165138
|
+
export declare type QueryConfluence_ContentApprovalsSpaceSettingConfigArgs = {
|
|
165139
|
+
cloudId: Scalars['ID']['input'];
|
|
165140
|
+
filterSelf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165141
|
+
spaceKey: Scalars['String']['input'];
|
|
165142
|
+
};
|
|
164603
165143
|
export declare type QueryConfluence_ContentPerformanceListArgs = {
|
|
164604
165144
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164605
165145
|
cloudId: Scalars['ID']['input'];
|
|
@@ -164936,6 +165476,12 @@ export declare type QueryConfluence_PopularCalendarsArgs = {
|
|
|
164936
165476
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164937
165477
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
164938
165478
|
};
|
|
165479
|
+
export declare type QueryConfluence_PopularLabelsMacroArgs = {
|
|
165480
|
+
cloudId: Scalars['ID']['input'];
|
|
165481
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165482
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
165483
|
+
style?: InputMaybe<ConfluencePopularLabelStyle>;
|
|
165484
|
+
};
|
|
164939
165485
|
export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
164940
165486
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164941
165487
|
cloudId: Scalars['ID']['input'];
|
|
@@ -165174,6 +165720,10 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
165174
165720
|
cloudId: Scalars['ID']['input'];
|
|
165175
165721
|
jql: Scalars['String']['input'];
|
|
165176
165722
|
};
|
|
165723
|
+
export declare type QueryConfluence_ValidateConvertPageToMarkdownModeArgs = {
|
|
165724
|
+
cloudId: Scalars['ID']['input'];
|
|
165725
|
+
contentId: Scalars['ID']['input'];
|
|
165726
|
+
};
|
|
165177
165727
|
export declare type QueryConfluence_WatermarkConfigArgs = {
|
|
165178
165728
|
resourceAri: Scalars['ID']['input'];
|
|
165179
165729
|
};
|
|
@@ -165575,6 +166125,9 @@ export declare type QueryCsmCustomersByIdsArgs = {
|
|
|
165575
166125
|
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
165576
166126
|
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
165577
166127
|
};
|
|
166128
|
+
export declare type QueryCsm_HelpCenterMetadataArgs = {
|
|
166129
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
166130
|
+
};
|
|
165578
166131
|
export declare type QueryCsm_LiveChatAgentArgs = {
|
|
165579
166132
|
accountId: Scalars['ID']['input'];
|
|
165580
166133
|
cloudId: Scalars['ID']['input'];
|
|
@@ -166090,6 +166643,9 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
166090
166643
|
containerId: Scalars['ID']['input'];
|
|
166091
166644
|
goalKey: Scalars['String']['input'];
|
|
166092
166645
|
};
|
|
166646
|
+
export declare type QueryGoals_CapabilitiesArgs = {
|
|
166647
|
+
containerId: Scalars['ID']['input'];
|
|
166648
|
+
};
|
|
166093
166649
|
export declare type QueryGoals_GoalStatusesArgs = {
|
|
166094
166650
|
containerId: Scalars['ID']['input'];
|
|
166095
166651
|
};
|
|
@@ -166181,6 +166737,7 @@ export declare type QueryGraphIntegration_McpToolsArgs = {
|
|
|
166181
166737
|
};
|
|
166182
166738
|
export declare type QueryGraphIntegration_SkillArgs = {
|
|
166183
166739
|
contextAri: Scalars['ID']['input'];
|
|
166740
|
+
resolvePlatformToolNames?: InputMaybe<Scalars['Boolean']['input']>;
|
|
166184
166741
|
skillAri: Scalars['ID']['input'];
|
|
166185
166742
|
};
|
|
166186
166743
|
export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
|
|
@@ -166267,6 +166824,9 @@ export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
|
|
|
166267
166824
|
filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
|
|
166268
166825
|
orgId: Scalars['ID']['input'];
|
|
166269
166826
|
};
|
|
166827
|
+
export declare type QueryGrowthUnifiedProfile_GetSnIdProfileArgs = {
|
|
166828
|
+
snId: Scalars['ID']['input'];
|
|
166829
|
+
};
|
|
166270
166830
|
export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
166271
166831
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
166272
166832
|
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -166665,6 +167225,10 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
|
|
|
166665
167225
|
jiraProjectAri: Scalars['ID']['input'];
|
|
166666
167226
|
ticketId: Scalars['ID']['input'];
|
|
166667
167227
|
};
|
|
167228
|
+
export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
|
|
167229
|
+
experience: JsmChannelsExperience;
|
|
167230
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
167231
|
+
};
|
|
166668
167232
|
export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
166669
167233
|
experience: JsmChannelsExperience;
|
|
166670
167234
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -167284,6 +167848,9 @@ export declare type QueryProjects_ByKeyArgs = {
|
|
|
167284
167848
|
export declare type QueryProjects_CanCreateProjectFusionArgs = {
|
|
167285
167849
|
input: TownsquareProjectsCanCreateProjectFusionInput;
|
|
167286
167850
|
};
|
|
167851
|
+
export declare type QueryProjects_CapabilitiesArgs = {
|
|
167852
|
+
containerId: Scalars['ID']['input'];
|
|
167853
|
+
};
|
|
167287
167854
|
export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
|
|
167288
167855
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167289
167856
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168628,7 +169195,7 @@ export declare enum RadarFieldType {
|
|
|
168628
169195
|
Url = "URL",
|
|
168629
169196
|
User = "USER"
|
|
168630
169197
|
}
|
|
168631
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue | RadarUserFieldValue;
|
|
169198
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarLongFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue | RadarUserFieldValue;
|
|
168632
169199
|
export declare type RadarFieldValueIdPair = {
|
|
168633
169200
|
__typename?: 'RadarFieldValueIdPair';
|
|
168634
169201
|
fieldId: Scalars['ID']['output'];
|
|
@@ -168775,6 +169342,12 @@ export declare type RadarLastAppliedFilterInput = {
|
|
|
168775
169342
|
pageName: Scalars['String']['input'];
|
|
168776
169343
|
rqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
168777
169344
|
};
|
|
169345
|
+
export declare type RadarLongFieldValue = {
|
|
169346
|
+
__typename?: 'RadarLongFieldValue';
|
|
169347
|
+
displayValue?: Maybe<Scalars['Long']['output']>;
|
|
169348
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
169349
|
+
value?: Maybe<Scalars['Long']['output']>;
|
|
169350
|
+
};
|
|
168778
169351
|
export declare type RadarMetricSettings = {
|
|
168779
169352
|
__typename?: 'RadarMetricSettings';
|
|
168780
169353
|
id: Scalars['ID']['output'];
|
|
@@ -170775,6 +171348,7 @@ export declare enum Scope {
|
|
|
170775
171348
|
ReadAppLogs = "READ_APP_LOGS",
|
|
170776
171349
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
170777
171350
|
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
171351
|
+
ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
|
|
170778
171352
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
170779
171353
|
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
170780
171354
|
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
@@ -170808,6 +171382,7 @@ export declare enum Scope {
|
|
|
170808
171382
|
ReadConfluenceSpaceProperty = "READ_CONFLUENCE_SPACE_PROPERTY",
|
|
170809
171383
|
ReadConfluenceSpaceSetting = "READ_CONFLUENCE_SPACE_SETTING",
|
|
170810
171384
|
ReadConfluenceTemplate = "READ_CONFLUENCE_TEMPLATE",
|
|
171385
|
+
ReadConfluenceTwgCli = "READ_CONFLUENCE_TWG_CLI",
|
|
170811
171386
|
ReadConfluenceUser = "READ_CONFLUENCE_USER",
|
|
170812
171387
|
ReadConfluenceUserProperty = "READ_CONFLUENCE_USER_PROPERTY",
|
|
170813
171388
|
ReadConfluenceWatcher = "READ_CONFLUENCE_WATCHER",
|
|
@@ -170818,7 +171393,14 @@ export declare enum Scope {
|
|
|
170818
171393
|
ReadDesign = "READ_DESIGN",
|
|
170819
171394
|
ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
|
|
170820
171395
|
ReadDevInfoJira = "READ_DEV_INFO_JIRA",
|
|
171396
|
+
ReadFeedbackCustomer = "READ_FEEDBACK_CUSTOMER",
|
|
170821
171397
|
ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
|
|
171398
|
+
ReadFeedbackField = "READ_FEEDBACK_FIELD",
|
|
171399
|
+
ReadFeedbackInsight = "READ_FEEDBACK_INSIGHT",
|
|
171400
|
+
ReadFeedbackJob = "READ_FEEDBACK_JOB",
|
|
171401
|
+
ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
|
|
171402
|
+
ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
|
|
171403
|
+
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
170822
171404
|
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
170823
171405
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
170824
171406
|
ReadJiraAlignTwgCli = "READ_JIRA_ALIGN_TWG_CLI",
|
|
@@ -170934,6 +171516,7 @@ export declare enum Scope {
|
|
|
170934
171516
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
170935
171517
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
170936
171518
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
171519
|
+
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
170937
171520
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
170938
171521
|
WriteCommentGoal = "WRITE_COMMENT_GOAL",
|
|
170939
171522
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
@@ -170967,7 +171550,13 @@ export declare enum Scope {
|
|
|
170967
171550
|
WriteCustomer = "WRITE_CUSTOMER",
|
|
170968
171551
|
WriteDesign = "WRITE_DESIGN",
|
|
170969
171552
|
WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
|
|
171553
|
+
WriteFeedbackCustomer = "WRITE_FEEDBACK_CUSTOMER",
|
|
170970
171554
|
WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
|
|
171555
|
+
WriteFeedbackField = "WRITE_FEEDBACK_FIELD",
|
|
171556
|
+
WriteFeedbackInsight = "WRITE_FEEDBACK_INSIGHT",
|
|
171557
|
+
WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
|
|
171558
|
+
WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
|
|
171559
|
+
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
170971
171560
|
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
170972
171561
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
170973
171562
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
@@ -172269,6 +172858,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
172269
172858
|
};
|
|
172270
172859
|
export declare type SearchThirdPartyMetadata = {
|
|
172271
172860
|
__typename?: 'SearchThirdPartyMetadata';
|
|
172861
|
+
connectedAt?: Maybe<Scalars['String']['output']>;
|
|
172272
172862
|
connectionId?: Maybe<Scalars['String']['output']>;
|
|
172273
172863
|
connectorCreatedAt?: Maybe<Scalars['String']['output']>;
|
|
172274
172864
|
connectorSyncType?: Maybe<Scalars['String']['output']>;
|
|
@@ -191627,10 +192217,21 @@ export declare type SmartsContext = {
|
|
|
191627
192217
|
tenantId: Scalars['String']['input'];
|
|
191628
192218
|
userId: Scalars['String']['input'];
|
|
191629
192219
|
};
|
|
192220
|
+
export declare type SmartsContextServiceCollaboratorRecommendation = {
|
|
192221
|
+
__typename?: 'SmartsContextServiceCollaboratorRecommendation';
|
|
192222
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
192223
|
+
id: Scalars['ID']['output'];
|
|
192224
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
192225
|
+
user?: Maybe<User>;
|
|
192226
|
+
};
|
|
191630
192227
|
export declare type SmartsContextServiceQueryApi = {
|
|
191631
192228
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
192229
|
+
orbitRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
191632
192230
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
191633
192231
|
};
|
|
192232
|
+
export declare type SmartsContextServiceQueryApiOrbitRecommendationsArgs = {
|
|
192233
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
192234
|
+
};
|
|
191634
192235
|
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
191635
192236
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
191636
192237
|
};
|
|
@@ -194108,11 +194709,23 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
194108
194709
|
};
|
|
194109
194710
|
export declare type StakeholderCommsCustomDomainConfig = {
|
|
194110
194711
|
__typename?: 'StakeholderCommsCustomDomainConfig';
|
|
194712
|
+
cdoId?: Maybe<Scalars['String']['output']>;
|
|
194111
194713
|
certificateExpiresAt?: Maybe<Scalars['String']['output']>;
|
|
194112
194714
|
domain: Scalars['String']['output'];
|
|
194715
|
+
domainStatus?: Maybe<StakeholderCommsCustomDomainLifecycleStatus>;
|
|
194113
194716
|
recordTypes: Array<StakeholderCommsDnsRecordType>;
|
|
194114
194717
|
sslStatus: StakeholderCommsSslStatus;
|
|
194718
|
+
statusDescription?: Maybe<Scalars['String']['output']>;
|
|
194719
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
194115
194720
|
};
|
|
194721
|
+
export declare enum StakeholderCommsCustomDomainLifecycleStatus {
|
|
194722
|
+
Active = "ACTIVE",
|
|
194723
|
+
Deleted = "DELETED",
|
|
194724
|
+
Deleting = "DELETING",
|
|
194725
|
+
Error = "ERROR",
|
|
194726
|
+
Pending = "PENDING",
|
|
194727
|
+
Provisioned = "PROVISIONED"
|
|
194728
|
+
}
|
|
194116
194729
|
export declare type StakeholderCommsCustomDomainStatusResponse = {
|
|
194117
194730
|
__typename?: 'StakeholderCommsCustomDomainStatusResponse';
|
|
194118
194731
|
config?: Maybe<StakeholderCommsCustomDomainConfig>;
|
|
@@ -195497,6 +196110,7 @@ export declare type Subscription = {
|
|
|
195497
196110
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
195498
196111
|
blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
|
|
195499
196112
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
196113
|
+
confluence_onSuggestedEditsUpdated?: Maybe<ConfluenceSuggestedEditsUpdated>;
|
|
195500
196114
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
195501
196115
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
195502
196116
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
@@ -195547,6 +196161,9 @@ export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
|
195547
196161
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
195548
196162
|
id: Scalars['ID']['input'];
|
|
195549
196163
|
};
|
|
196164
|
+
export declare type SubscriptionConfluence_OnSuggestedEditsUpdatedArgs = {
|
|
196165
|
+
id: Scalars['ID']['input'];
|
|
196166
|
+
};
|
|
195550
196167
|
export declare type SubscriptionConvoai_OnAgentSessionCreateArgs = {
|
|
195551
196168
|
accountId: Scalars['String']['input'];
|
|
195552
196169
|
cloudId: Scalars['ID']['input'];
|
|
@@ -196261,6 +196878,17 @@ export declare type TeamChildrenEdge = {
|
|
|
196261
196878
|
cursor: Scalars['String']['output'];
|
|
196262
196879
|
node?: Maybe<TeamV2>;
|
|
196263
196880
|
};
|
|
196881
|
+
export declare type TeamConnection = {
|
|
196882
|
+
__typename?: 'TeamConnection';
|
|
196883
|
+
edges?: Maybe<Array<TeamConnectionEdge>>;
|
|
196884
|
+
nodes?: Maybe<Array<TeamV2>>;
|
|
196885
|
+
pageInfo: PageInfo;
|
|
196886
|
+
};
|
|
196887
|
+
export declare type TeamConnectionEdge = {
|
|
196888
|
+
__typename?: 'TeamConnectionEdge';
|
|
196889
|
+
cursor: Scalars['String']['output'];
|
|
196890
|
+
node?: Maybe<TeamV2>;
|
|
196891
|
+
};
|
|
196264
196892
|
export declare type TeamCreateCustomFieldPayload = {
|
|
196265
196893
|
cardinality: TeamCustomFieldCardinality;
|
|
196266
196894
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -196347,11 +196975,54 @@ export declare type TeamDetailedCustomFieldInfo = {
|
|
|
196347
196975
|
options?: Maybe<Array<TeamCustomFieldValue>>;
|
|
196348
196976
|
type: TeamCustomFieldType;
|
|
196349
196977
|
};
|
|
196978
|
+
export declare type TeamDisplayNameChange = {
|
|
196979
|
+
__typename?: 'TeamDisplayNameChange';
|
|
196980
|
+
from: Scalars['String']['output'];
|
|
196981
|
+
to: Scalars['String']['output'];
|
|
196982
|
+
};
|
|
196350
196983
|
export declare type TeamExternalReferenceInput = {
|
|
196351
196984
|
id: Scalars['String']['input'];
|
|
196352
196985
|
source: TeamSource;
|
|
196353
196986
|
syncTeamName?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196354
196987
|
};
|
|
196988
|
+
export declare type TeamExternalSourceDiff = {
|
|
196989
|
+
__typename?: 'TeamExternalSourceDiff';
|
|
196990
|
+
displayNameChange?: Maybe<TeamDisplayNameChange>;
|
|
196991
|
+
errors: Array<TeamExternalSourceDiffError>;
|
|
196992
|
+
membersToAdd: TeamMembersChange;
|
|
196993
|
+
membersToRemove: TeamMembersChange;
|
|
196994
|
+
};
|
|
196995
|
+
export declare enum TeamExternalSourceDiffError {
|
|
196996
|
+
ExternalSourceTooBig = "EXTERNAL_SOURCE_TOO_BIG",
|
|
196997
|
+
TeamTooBig = "TEAM_TOO_BIG"
|
|
196998
|
+
}
|
|
196999
|
+
export declare type TeamExternalSourceDiffInput = {
|
|
197000
|
+
externalReference: TeamExternalReferenceInput;
|
|
197001
|
+
scopeId: Scalars['ID']['input'];
|
|
197002
|
+
teamId: Scalars['ID']['input'];
|
|
197003
|
+
};
|
|
197004
|
+
export declare type TeamExternalSourceDiffPayload = Payload & {
|
|
197005
|
+
__typename?: 'TeamExternalSourceDiffPayload';
|
|
197006
|
+
diff?: Maybe<TeamExternalSourceDiff>;
|
|
197007
|
+
errors?: Maybe<Array<MutationError>>;
|
|
197008
|
+
success: Scalars['Boolean']['output'];
|
|
197009
|
+
};
|
|
197010
|
+
export declare type TeamGoal = {
|
|
197011
|
+
__typename?: 'TeamGoal';
|
|
197012
|
+
goal?: Maybe<TownsquareGoal>;
|
|
197013
|
+
id: Scalars['ID']['output'];
|
|
197014
|
+
};
|
|
197015
|
+
export declare type TeamGoalConnection = {
|
|
197016
|
+
__typename?: 'TeamGoalConnection';
|
|
197017
|
+
edges?: Maybe<Array<TeamGoalEdge>>;
|
|
197018
|
+
nodes?: Maybe<Array<TeamGoal>>;
|
|
197019
|
+
pageInfo: PageInfo;
|
|
197020
|
+
};
|
|
197021
|
+
export declare type TeamGoalEdge = {
|
|
197022
|
+
__typename?: 'TeamGoalEdge';
|
|
197023
|
+
cursor: Scalars['String']['output'];
|
|
197024
|
+
node?: Maybe<TeamGoal>;
|
|
197025
|
+
};
|
|
196355
197026
|
export declare type TeamHierarchy = {
|
|
196356
197027
|
__typename?: 'TeamHierarchy';
|
|
196357
197028
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -196417,6 +197088,11 @@ export declare type TeamMemberV2 = {
|
|
|
196417
197088
|
role?: Maybe<TeamMembershipRole>;
|
|
196418
197089
|
state?: Maybe<TeamMembershipState>;
|
|
196419
197090
|
};
|
|
197091
|
+
export declare type TeamMembersChange = {
|
|
197092
|
+
__typename?: 'TeamMembersChange';
|
|
197093
|
+
count: Scalars['Int']['output'];
|
|
197094
|
+
memberIds: Array<Scalars['ID']['output']>;
|
|
197095
|
+
};
|
|
196420
197096
|
export declare type TeamMembershipFilter = {
|
|
196421
197097
|
memberIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
196422
197098
|
};
|
|
@@ -196591,6 +197267,11 @@ export declare type TeamMutationUpdateTypeArgs = {
|
|
|
196591
197267
|
id: Scalars['ID']['input'];
|
|
196592
197268
|
typeData: TeamTypeUpdatePayload;
|
|
196593
197269
|
};
|
|
197270
|
+
export declare type TeamMutationErrorExtension = MutationErrorExtension & {
|
|
197271
|
+
__typename?: 'TeamMutationErrorExtension';
|
|
197272
|
+
errorType: Scalars['String']['output'];
|
|
197273
|
+
statusCode: Scalars['Int']['output'];
|
|
197274
|
+
};
|
|
196594
197275
|
export declare enum TeamNotificationChannel {
|
|
196595
197276
|
Email = "EMAIL",
|
|
196596
197277
|
InApp = "IN_APP"
|
|
@@ -196630,11 +197311,28 @@ export declare type TeamPrincipalEdge = {
|
|
|
196630
197311
|
cursor: Scalars['String']['output'];
|
|
196631
197312
|
node?: Maybe<TeamPrincipal>;
|
|
196632
197313
|
};
|
|
197314
|
+
export declare type TeamProject = {
|
|
197315
|
+
__typename?: 'TeamProject';
|
|
197316
|
+
id: Scalars['ID']['output'];
|
|
197317
|
+
project?: Maybe<TownsquareProject>;
|
|
197318
|
+
};
|
|
197319
|
+
export declare type TeamProjectConnection = {
|
|
197320
|
+
__typename?: 'TeamProjectConnection';
|
|
197321
|
+
edges?: Maybe<Array<TeamProjectEdge>>;
|
|
197322
|
+
nodes?: Maybe<Array<TeamProject>>;
|
|
197323
|
+
pageInfo: PageInfo;
|
|
197324
|
+
};
|
|
197325
|
+
export declare type TeamProjectEdge = {
|
|
197326
|
+
__typename?: 'TeamProjectEdge';
|
|
197327
|
+
cursor: Scalars['String']['output'];
|
|
197328
|
+
node?: Maybe<TeamProject>;
|
|
197329
|
+
};
|
|
196633
197330
|
export declare type TeamQuery = {
|
|
196634
197331
|
__typename?: 'TeamQuery';
|
|
196635
197332
|
customField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
196636
197333
|
customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
|
|
196637
197334
|
customFieldsWithinTeam?: Maybe<Array<TeamCustomFieldKeyValues>>;
|
|
197335
|
+
getTeamExternalSourceDiff?: Maybe<TeamExternalSourceDiffPayload>;
|
|
196638
197336
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
196639
197337
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
196640
197338
|
scopeNotificationConfigurations?: Maybe<Array<TeamScopeNotificationConfiguration>>;
|
|
@@ -196643,6 +197341,7 @@ export declare type TeamQuery = {
|
|
|
196643
197341
|
teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
|
|
196644
197342
|
teamV2?: Maybe<TeamV2>;
|
|
196645
197343
|
teamV3?: Maybe<TeamV2>;
|
|
197344
|
+
teamsTql?: Maybe<TeamConnection>;
|
|
196646
197345
|
teamsV2?: Maybe<Array<Maybe<TeamV2>>>;
|
|
196647
197346
|
typeInformation?: Maybe<TeamType>;
|
|
196648
197347
|
typesWithinScope?: Maybe<TeamTypeConnection>;
|
|
@@ -196657,6 +197356,9 @@ export declare type TeamQueryCustomFieldsWithinTeamArgs = {
|
|
|
196657
197356
|
scopeId: Scalars['ID']['input'];
|
|
196658
197357
|
teamId: Scalars['ID']['input'];
|
|
196659
197358
|
};
|
|
197359
|
+
export declare type TeamQueryGetTeamExternalSourceDiffArgs = {
|
|
197360
|
+
input: TeamExternalSourceDiffInput;
|
|
197361
|
+
};
|
|
196660
197362
|
export declare type TeamQueryNotificationConfigurationsArgs = {
|
|
196661
197363
|
ari: Scalars['ID']['input'];
|
|
196662
197364
|
};
|
|
@@ -196698,6 +197400,12 @@ export declare type TeamQueryTeamV2Args = {
|
|
|
196698
197400
|
export declare type TeamQueryTeamV3Args = {
|
|
196699
197401
|
id: Scalars['ID']['input'];
|
|
196700
197402
|
};
|
|
197403
|
+
export declare type TeamQueryTeamsTqlArgs = {
|
|
197404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197406
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
197407
|
+
scopeId: Scalars['ID']['input'];
|
|
197408
|
+
};
|
|
196701
197409
|
export declare type TeamQueryTeamsV2Args = {
|
|
196702
197410
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
196703
197411
|
siteId: Scalars['String']['input'];
|
|
@@ -196990,6 +197698,7 @@ export declare type TeamV2 = Node & {
|
|
|
196990
197698
|
creator?: Maybe<User>;
|
|
196991
197699
|
description?: Maybe<Scalars['String']['output']>;
|
|
196992
197700
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
197701
|
+
goals?: Maybe<TeamGoalConnection>;
|
|
196993
197702
|
hierarchy?: Maybe<TeamHierarchy>;
|
|
196994
197703
|
id: Scalars['ID']['output'];
|
|
196995
197704
|
isCurrentUserMemberOfTeam?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -197002,16 +197711,25 @@ export declare type TeamV2 = Node & {
|
|
|
197002
197711
|
permission?: Maybe<TeamPermission>;
|
|
197003
197712
|
permissions?: Maybe<Array<TeamPermissions>>;
|
|
197004
197713
|
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
197714
|
+
projects?: Maybe<TeamProjectConnection>;
|
|
197005
197715
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
197006
197716
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
197007
197717
|
state?: Maybe<TeamStateV2>;
|
|
197008
197718
|
type?: Maybe<TeamType>;
|
|
197009
197719
|
};
|
|
197720
|
+
export declare type TeamV2GoalsArgs = {
|
|
197721
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197722
|
+
first?: Scalars['Int']['input'];
|
|
197723
|
+
};
|
|
197010
197724
|
export declare type TeamV2MembersArgs = {
|
|
197011
197725
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
197012
197726
|
first?: Scalars['Int']['input'];
|
|
197013
197727
|
state?: Array<TeamMembershipState>;
|
|
197014
197728
|
};
|
|
197729
|
+
export declare type TeamV2ProjectsArgs = {
|
|
197730
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197731
|
+
first?: Scalars['Int']['input'];
|
|
197732
|
+
};
|
|
197015
197733
|
export declare type TeamWithMembershipSyncPayload = Payload & {
|
|
197016
197734
|
__typename?: 'TeamWithMembershipSyncPayload';
|
|
197017
197735
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -197684,6 +198402,10 @@ export declare type TownsquareAppAccessMutationErrorExtension = MutationErrorExt
|
|
|
197684
198402
|
failedAccountIds: Array<Scalars['String']['output']>;
|
|
197685
198403
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
197686
198404
|
};
|
|
198405
|
+
export declare enum TownsquareAppLevelEffectiveRole {
|
|
198406
|
+
CanEdit = "CAN_EDIT",
|
|
198407
|
+
ViewOnly = "VIEW_ONLY"
|
|
198408
|
+
}
|
|
197687
198409
|
export declare type TownsquareArchiveGoalInput = {
|
|
197688
198410
|
id: Scalars['String']['input'];
|
|
197689
198411
|
};
|
|
@@ -198259,6 +198981,7 @@ export declare type TownsquareGoalAccessConnection = {
|
|
|
198259
198981
|
};
|
|
198260
198982
|
export declare type TownsquareGoalAccessEdge = {
|
|
198261
198983
|
__typename?: 'TownsquareGoalAccessEdge';
|
|
198984
|
+
appLevelEffectiveRole?: Maybe<TownsquareAppLevelEffectiveRole>;
|
|
198262
198985
|
cursor: Scalars['String']['output'];
|
|
198263
198986
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
198264
198987
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -198281,6 +199004,8 @@ export declare enum TownsquareGoalAccessRoleInput {
|
|
|
198281
199004
|
}
|
|
198282
199005
|
export declare type TownsquareGoalAppCapabilities = {
|
|
198283
199006
|
__typename?: 'TownsquareGoalAppCapabilities';
|
|
199007
|
+
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
199008
|
+
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
198284
199009
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
198285
199010
|
};
|
|
198286
199011
|
export declare type TownsquareGoalArchivedChange = {
|
|
@@ -198295,6 +199020,7 @@ export declare type TownsquareGoalBundledUpdateConnection = {
|
|
|
198295
199020
|
export declare type TownsquareGoalBundledUpdateEdge = {
|
|
198296
199021
|
__typename?: 'TownsquareGoalBundledUpdateEdge';
|
|
198297
199022
|
cursor: Scalars['String']['output'];
|
|
199023
|
+
goal?: Maybe<TownsquareGoal>;
|
|
198298
199024
|
node?: Maybe<TownsquareGoalUpdate>;
|
|
198299
199025
|
nodeMissingReason?: Maybe<TownsquareBundledUpdateNodeMissingReason>;
|
|
198300
199026
|
successMeasure?: Maybe<TownsquareGoal>;
|
|
@@ -199184,6 +199910,17 @@ export declare type TownsquareGoalsRemoveUserCustomFieldValuePayload = {
|
|
|
199184
199910
|
success: Scalars['Boolean']['output'];
|
|
199185
199911
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
199186
199912
|
};
|
|
199913
|
+
export declare type TownsquareGoalsRemoveWatchersInput = {
|
|
199914
|
+
goalId: Scalars['ID']['input'];
|
|
199915
|
+
watcherIds: Array<Scalars['ID']['input']>;
|
|
199916
|
+
};
|
|
199917
|
+
export declare type TownsquareGoalsRemoveWatchersPayload = {
|
|
199918
|
+
__typename?: 'TownsquareGoalsRemoveWatchersPayload';
|
|
199919
|
+
errors?: Maybe<Array<MutationError>>;
|
|
199920
|
+
goal?: Maybe<TownsquareGoal>;
|
|
199921
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
199922
|
+
success: Scalars['Boolean']['output'];
|
|
199923
|
+
};
|
|
199187
199924
|
export declare type TownsquareGoalsSetRollupProgressInput = {
|
|
199188
199925
|
enableRollupProgress?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199189
199926
|
goalId: Scalars['ID']['input'];
|
|
@@ -199790,6 +200527,7 @@ export declare type TownsquareProjectAccessConnection = {
|
|
|
199790
200527
|
};
|
|
199791
200528
|
export declare type TownsquareProjectAccessEdge = {
|
|
199792
200529
|
__typename?: 'TownsquareProjectAccessEdge';
|
|
200530
|
+
appLevelEffectiveRole?: Maybe<TownsquareAppLevelEffectiveRole>;
|
|
199793
200531
|
cursor: Scalars['String']['output'];
|
|
199794
200532
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
199795
200533
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -199812,6 +200550,8 @@ export declare enum TownsquareProjectAccessRoleInput {
|
|
|
199812
200550
|
}
|
|
199813
200551
|
export declare type TownsquareProjectAppCapabilities = {
|
|
199814
200552
|
__typename?: 'TownsquareProjectAppCapabilities';
|
|
200553
|
+
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
200554
|
+
canExportProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
199815
200555
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
199816
200556
|
};
|
|
199817
200557
|
export declare type TownsquareProjectCapabilities = {
|
|
@@ -201048,6 +201788,14 @@ export declare type TownsquareUnshardedFusionConfigForJiraIssueAri = {
|
|
|
201048
201788
|
isAppEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
201049
201789
|
jiraIssueAri?: Maybe<Scalars['String']['output']>;
|
|
201050
201790
|
};
|
|
201791
|
+
export declare type TownsquareUnshardedGoalAppCapabilities = {
|
|
201792
|
+
__typename?: 'TownsquareUnshardedGoalAppCapabilities';
|
|
201793
|
+
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
201794
|
+
};
|
|
201795
|
+
export declare type TownsquareUnshardedProjectAppCapabilities = {
|
|
201796
|
+
__typename?: 'TownsquareUnshardedProjectAppCapabilities';
|
|
201797
|
+
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
201798
|
+
};
|
|
201051
201799
|
export declare type TownsquareUnshardedUserCapabilities = {
|
|
201052
201800
|
__typename?: 'TownsquareUnshardedUserCapabilities';
|
|
201053
201801
|
capabilities?: Maybe<Array<Maybe<TownsquareUnshardedCapability>>>;
|
|
@@ -201055,8 +201803,10 @@ export declare type TownsquareUnshardedUserCapabilities = {
|
|
|
201055
201803
|
export declare type TownsquareUnshardedWorkspaceSummary = {
|
|
201056
201804
|
__typename?: 'TownsquareUnshardedWorkspaceSummary';
|
|
201057
201805
|
cloudId: Scalars['String']['output'];
|
|
201806
|
+
goalsCapabilities?: Maybe<TownsquareUnshardedGoalAppCapabilities>;
|
|
201058
201807
|
id: Scalars['ID']['output'];
|
|
201059
201808
|
name: Scalars['String']['output'];
|
|
201809
|
+
projectsCapabilities?: Maybe<TownsquareUnshardedProjectAppCapabilities>;
|
|
201060
201810
|
userCapabilities?: Maybe<TownsquareUnshardedUserCapabilities>;
|
|
201061
201811
|
uuid: Scalars['String']['output'];
|
|
201062
201812
|
};
|
|
@@ -201190,6 +201940,7 @@ export declare type TownsquareWatchGoalPayload = {
|
|
|
201190
201940
|
export declare type TownsquareWorkspace = Node & {
|
|
201191
201941
|
__typename?: 'TownsquareWorkspace';
|
|
201192
201942
|
cloudId: Scalars['String']['output'];
|
|
201943
|
+
defaultGoalAccessLevel: TownsquareGoalAccessLevel;
|
|
201193
201944
|
id: Scalars['ID']['output'];
|
|
201194
201945
|
name: Scalars['String']['output'];
|
|
201195
201946
|
};
|
|
@@ -201983,6 +202734,10 @@ export declare type TrelloBoardBoardsLimits = {
|
|
|
201983
202734
|
totalAccessRequestsPerBoard?: Maybe<TrelloLimitProps>;
|
|
201984
202735
|
totalMembersPerBoard?: Maybe<TrelloLimitProps>;
|
|
201985
202736
|
};
|
|
202737
|
+
export declare enum TrelloBoardCardAgingModes {
|
|
202738
|
+
Pirate = "PIRATE",
|
|
202739
|
+
Regular = "REGULAR"
|
|
202740
|
+
}
|
|
201986
202741
|
export declare type TrelloBoardCardsLimits = {
|
|
201987
202742
|
__typename?: 'TrelloBoardCardsLimits';
|
|
201988
202743
|
openPerBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -201999,6 +202754,13 @@ export declare type TrelloBoardChecklistsLimits = {
|
|
|
201999
202754
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
202000
202755
|
perCard?: Maybe<TrelloLimitProps>;
|
|
202001
202756
|
};
|
|
202757
|
+
export declare enum TrelloBoardCommentPermissions {
|
|
202758
|
+
Disabled = "DISABLED",
|
|
202759
|
+
Members = "MEMBERS",
|
|
202760
|
+
Observers = "OBSERVERS",
|
|
202761
|
+
Org = "ORG",
|
|
202762
|
+
Public = "PUBLIC"
|
|
202763
|
+
}
|
|
202002
202764
|
export declare enum TrelloBoardCommentingPermissions {
|
|
202003
202765
|
Board = "BOARD",
|
|
202004
202766
|
Disabled = "DISABLED",
|
|
@@ -202010,6 +202772,13 @@ export declare type TrelloBoardConnectionUpdated = {
|
|
|
202010
202772
|
__typename?: 'TrelloBoardConnectionUpdated';
|
|
202011
202773
|
edges?: Maybe<Array<TrelloBoardUpdatedEdge>>;
|
|
202012
202774
|
};
|
|
202775
|
+
export declare enum TrelloBoardCreationMethod {
|
|
202776
|
+
Ai = "AI",
|
|
202777
|
+
Assisted = "ASSISTED",
|
|
202778
|
+
Automatic = "AUTOMATIC",
|
|
202779
|
+
Demo = "DEMO",
|
|
202780
|
+
EmailSource = "EMAIL_SOURCE"
|
|
202781
|
+
}
|
|
202013
202782
|
export declare type TrelloBoardCustomFieldOptionsLimits = {
|
|
202014
202783
|
__typename?: 'TrelloBoardCustomFieldOptionsLimits';
|
|
202015
202784
|
perField?: Maybe<TrelloLimitProps>;
|
|
@@ -202032,6 +202801,10 @@ export declare type TrelloBoardId = TrelloBaseBoardId & {
|
|
|
202032
202801
|
id: Scalars['ID']['output'];
|
|
202033
202802
|
objectId: Scalars['ID']['output'];
|
|
202034
202803
|
};
|
|
202804
|
+
export declare enum TrelloBoardInvitationPermissions {
|
|
202805
|
+
Admins = "ADMINS",
|
|
202806
|
+
Members = "MEMBERS"
|
|
202807
|
+
}
|
|
202035
202808
|
export declare enum TrelloBoardInvitePermissionsInput {
|
|
202036
202809
|
Admins = "ADMINS",
|
|
202037
202810
|
Members = "MEMBERS"
|
|
@@ -202135,6 +202908,19 @@ export declare type TrelloBoardPowerUpEdgeUpdated = {
|
|
|
202135
202908
|
export declare type TrelloBoardPowerUpFilterInput = {
|
|
202136
202909
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
202137
202910
|
};
|
|
202911
|
+
export declare type TrelloBoardPreferencesInput = {
|
|
202912
|
+
background?: InputMaybe<TrelloCreateBoardBackgroundInput>;
|
|
202913
|
+
cardAging?: InputMaybe<TrelloBoardCardAgingModes>;
|
|
202914
|
+
cardCounts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202915
|
+
cardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202916
|
+
comments?: InputMaybe<TrelloBoardCommentPermissions>;
|
|
202917
|
+
invitations?: InputMaybe<TrelloBoardInvitationPermissions>;
|
|
202918
|
+
isTemplate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202919
|
+
permissionLevel?: InputMaybe<TrelloBoardPrefsPermissionLevel>;
|
|
202920
|
+
selfJoin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202921
|
+
showCompleteStatus?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202922
|
+
voting?: InputMaybe<TrelloBoardVotingPermissions>;
|
|
202923
|
+
};
|
|
202138
202924
|
export declare type TrelloBoardPrefs = TrelloBaseBoardPrefs & {
|
|
202139
202925
|
__typename?: 'TrelloBoardPrefs';
|
|
202140
202926
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -203048,6 +203834,24 @@ export declare type TrelloCreateApplicationPayload = Payload & {
|
|
|
203048
203834
|
errors?: Maybe<Array<MutationError>>;
|
|
203049
203835
|
success: Scalars['Boolean']['output'];
|
|
203050
203836
|
};
|
|
203837
|
+
export declare type TrelloCreateBoardBackgroundInput = {
|
|
203838
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
203839
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
203840
|
+
};
|
|
203841
|
+
export declare type TrelloCreateBoardInput = {
|
|
203842
|
+
creationMethod?: InputMaybe<TrelloBoardCreationMethod>;
|
|
203843
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
203844
|
+
name: Scalars['String']['input'];
|
|
203845
|
+
preferences?: InputMaybe<TrelloBoardPreferencesInput>;
|
|
203846
|
+
setup?: InputMaybe<TrelloSetupInput>;
|
|
203847
|
+
workspaceId: Scalars['ID']['input'];
|
|
203848
|
+
};
|
|
203849
|
+
export declare type TrelloCreateBoardPayload = Payload & {
|
|
203850
|
+
__typename?: 'TrelloCreateBoardPayload';
|
|
203851
|
+
board?: Maybe<TrelloBoard>;
|
|
203852
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203853
|
+
success: Scalars['Boolean']['output'];
|
|
203854
|
+
};
|
|
203051
203855
|
export declare type TrelloCreateBoardWithAiInput = {
|
|
203052
203856
|
userInput: TrelloAiBoardUserInput;
|
|
203053
203857
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -203554,6 +204358,15 @@ export declare type TrelloEnableCardFrontCompleteTogglePayload = Payload & {
|
|
|
203554
204358
|
errors?: Maybe<Array<MutationError>>;
|
|
203555
204359
|
success: Scalars['Boolean']['output'];
|
|
203556
204360
|
};
|
|
204361
|
+
export declare type TrelloEndVoiceCaptureSessionInput = {
|
|
204362
|
+
lastSequenceNumber: Scalars['Int']['input'];
|
|
204363
|
+
sessionId: Scalars['ID']['input'];
|
|
204364
|
+
};
|
|
204365
|
+
export declare type TrelloEndVoiceCaptureSessionPayload = Payload & {
|
|
204366
|
+
__typename?: 'TrelloEndVoiceCaptureSessionPayload';
|
|
204367
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204368
|
+
success: Scalars['Boolean']['output'];
|
|
204369
|
+
};
|
|
203557
204370
|
export declare type TrelloEnterprise = Node & {
|
|
203558
204371
|
__typename?: 'TrelloEnterprise';
|
|
203559
204372
|
admins?: Maybe<TrelloMemberConnection>;
|
|
@@ -204103,6 +204916,7 @@ export declare type TrelloMember = Node & {
|
|
|
204103
204916
|
url?: Maybe<Scalars['URL']['output']>;
|
|
204104
204917
|
user?: Maybe<User>;
|
|
204105
204918
|
username?: Maybe<Scalars['String']['output']>;
|
|
204919
|
+
webhooks?: Maybe<TrelloMemberOwnedWebhookConnection>;
|
|
204106
204920
|
workspaces?: Maybe<TrelloMemberWorkspaceConnection>;
|
|
204107
204921
|
};
|
|
204108
204922
|
export declare type TrelloMemberAiRulesArgs = {
|
|
@@ -204127,6 +204941,10 @@ export declare type TrelloMemberNotificationsArgs = {
|
|
|
204127
204941
|
filter?: InputMaybe<TrelloNotificationFilter>;
|
|
204128
204942
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204129
204943
|
};
|
|
204944
|
+
export declare type TrelloMemberWebhooksArgs = {
|
|
204945
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204946
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204947
|
+
};
|
|
204130
204948
|
export declare type TrelloMemberWorkspacesArgs = {
|
|
204131
204949
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
204132
204950
|
filter?: InputMaybe<TrelloMemberWorkspaceFilter>;
|
|
@@ -204228,6 +205046,33 @@ export declare type TrelloMemberOAuth2AccessGrantsResult = {
|
|
|
204228
205046
|
grants: Array<TrelloMemberOAuth2AccessGrant>;
|
|
204229
205047
|
member: TrelloMember;
|
|
204230
205048
|
};
|
|
205049
|
+
export declare type TrelloMemberOwnedWebhook = {
|
|
205050
|
+
__typename?: 'TrelloMemberOwnedWebhook';
|
|
205051
|
+
application?: Maybe<TrelloMemberOwnedWebhookLegacyApplication>;
|
|
205052
|
+
id: Scalars['ID']['output'];
|
|
205053
|
+
modelId: Scalars['ID']['output'];
|
|
205054
|
+
oauth2Client?: Maybe<TrelloMemberOwnedWebhookOAuth2Client>;
|
|
205055
|
+
};
|
|
205056
|
+
export declare type TrelloMemberOwnedWebhookConnection = {
|
|
205057
|
+
__typename?: 'TrelloMemberOwnedWebhookConnection';
|
|
205058
|
+
edges?: Maybe<Array<Maybe<TrelloMemberOwnedWebhookEdge>>>;
|
|
205059
|
+
nodes?: Maybe<Array<TrelloMemberOwnedWebhook>>;
|
|
205060
|
+
pageInfo: PageInfo;
|
|
205061
|
+
};
|
|
205062
|
+
export declare type TrelloMemberOwnedWebhookEdge = {
|
|
205063
|
+
__typename?: 'TrelloMemberOwnedWebhookEdge';
|
|
205064
|
+
cursor: Scalars['String']['output'];
|
|
205065
|
+
node?: Maybe<TrelloMemberOwnedWebhook>;
|
|
205066
|
+
};
|
|
205067
|
+
export declare type TrelloMemberOwnedWebhookLegacyApplication = {
|
|
205068
|
+
__typename?: 'TrelloMemberOwnedWebhookLegacyApplication';
|
|
205069
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
205070
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
205071
|
+
};
|
|
205072
|
+
export declare type TrelloMemberOwnedWebhookOAuth2Client = {
|
|
205073
|
+
__typename?: 'TrelloMemberOwnedWebhookOAuth2Client';
|
|
205074
|
+
oauth2ClientId?: Maybe<Scalars['ID']['output']>;
|
|
205075
|
+
};
|
|
204231
205076
|
export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
204232
205077
|
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
204233
205078
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -204449,6 +205294,7 @@ export declare type TrelloMutationApi = {
|
|
|
204449
205294
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
204450
205295
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
204451
205296
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
205297
|
+
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
204452
205298
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
204453
205299
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
204454
205300
|
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
@@ -204474,6 +205320,7 @@ export declare type TrelloMutationApi = {
|
|
|
204474
205320
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
204475
205321
|
enableBoardSelfJoin?: Maybe<TrelloEnableBoardSelfJoinPayload>;
|
|
204476
205322
|
enableCardFrontCompleteToggle?: Maybe<TrelloEnableCardFrontCompleteTogglePayload>;
|
|
205323
|
+
endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
|
|
204477
205324
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
204478
205325
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
204479
205326
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
@@ -204514,6 +205361,7 @@ export declare type TrelloMutationApi = {
|
|
|
204514
205361
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
204515
205362
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
204516
205363
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
205364
|
+
updateApplication?: Maybe<TrelloUpdateApplicationPayload>;
|
|
204517
205365
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
204518
205366
|
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
204519
205367
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
@@ -204542,6 +205390,7 @@ export declare type TrelloMutationApi = {
|
|
|
204542
205390
|
updateCustomFieldOption?: Maybe<TrelloUpdateCustomFieldOptionPayload>;
|
|
204543
205391
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
204544
205392
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
205393
|
+
updateListName?: Maybe<TrelloUpdateListPayload>;
|
|
204545
205394
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
204546
205395
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
204547
205396
|
updatePlannerDueDateCardSettings?: Maybe<TrelloUpdatePlannerDueDateCardSettingsPayload>;
|
|
@@ -204604,6 +205453,9 @@ export declare type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
|
204604
205453
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
204605
205454
|
input: TrelloCreateApplicationInput;
|
|
204606
205455
|
};
|
|
205456
|
+
export declare type TrelloMutationApiCreateBoardArgs = {
|
|
205457
|
+
input: TrelloCreateBoardInput;
|
|
205458
|
+
};
|
|
204607
205459
|
export declare type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
204608
205460
|
input: TrelloCreateBoardWithAiInput;
|
|
204609
205461
|
};
|
|
@@ -204679,6 +205531,9 @@ export declare type TrelloMutationApiEnableBoardSelfJoinArgs = {
|
|
|
204679
205531
|
export declare type TrelloMutationApiEnableCardFrontCompleteToggleArgs = {
|
|
204680
205532
|
input: TrelloEnableCardFrontCompleteToggleInput;
|
|
204681
205533
|
};
|
|
205534
|
+
export declare type TrelloMutationApiEndVoiceCaptureSessionArgs = {
|
|
205535
|
+
input: TrelloEndVoiceCaptureSessionInput;
|
|
205536
|
+
};
|
|
204682
205537
|
export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
204683
205538
|
input: TrelloGenerateBoardBackgroundWithAiInput;
|
|
204684
205539
|
};
|
|
@@ -204793,6 +205648,9 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
204793
205648
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
204794
205649
|
input: TrelloUpdateAiRuleInput;
|
|
204795
205650
|
};
|
|
205651
|
+
export declare type TrelloMutationApiUpdateApplicationArgs = {
|
|
205652
|
+
input: TrelloUpdateApplicationInput;
|
|
205653
|
+
};
|
|
204796
205654
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
204797
205655
|
input: TrelloUpdateBoardBackgroundInput;
|
|
204798
205656
|
};
|
|
@@ -204877,6 +205735,9 @@ export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
|
204877
205735
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
204878
205736
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
204879
205737
|
};
|
|
205738
|
+
export declare type TrelloMutationApiUpdateListNameArgs = {
|
|
205739
|
+
input: TrelloUpdateListNameInput;
|
|
205740
|
+
};
|
|
204880
205741
|
export declare type TrelloMutationApiUpdateMemberTimezoneArgs = {
|
|
204881
205742
|
input: TrelloUpdateMemberTimezoneInput;
|
|
204882
205743
|
};
|
|
@@ -206263,6 +207124,11 @@ export declare type TrelloSetPlannerBoardOverridePayload = Payload & {
|
|
|
206263
207124
|
planner?: Maybe<TrelloPlanner>;
|
|
206264
207125
|
success: Scalars['Boolean']['output'];
|
|
206265
207126
|
};
|
|
207127
|
+
export declare type TrelloSetupInput = {
|
|
207128
|
+
addDefaultLabels?: InputMaybe<Scalars['Boolean']['input']>;
|
|
207129
|
+
addDefaultLists?: InputMaybe<Scalars['Boolean']['input']>;
|
|
207130
|
+
addStarterGuide?: InputMaybe<Scalars['Boolean']['input']>;
|
|
207131
|
+
};
|
|
206266
207132
|
export declare type TrelloShowCardCoversOnCardFrontInput = {
|
|
206267
207133
|
boardId: Scalars['ID']['input'];
|
|
206268
207134
|
};
|
|
@@ -206492,6 +207358,24 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
206492
207358
|
errors?: Maybe<Array<MutationError>>;
|
|
206493
207359
|
success: Scalars['Boolean']['output'];
|
|
206494
207360
|
};
|
|
207361
|
+
export declare type TrelloUpdateApplicationIconInput = {
|
|
207362
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
207363
|
+
};
|
|
207364
|
+
export declare type TrelloUpdateApplicationInput = {
|
|
207365
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
207366
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207367
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
207368
|
+
icon?: InputMaybe<TrelloUpdateApplicationIconInput>;
|
|
207369
|
+
id: Scalars['ID']['input'];
|
|
207370
|
+
iframeConnectorUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
207371
|
+
supportContact?: InputMaybe<Scalars['String']['input']>;
|
|
207372
|
+
};
|
|
207373
|
+
export declare type TrelloUpdateApplicationPayload = Payload & {
|
|
207374
|
+
__typename?: 'TrelloUpdateApplicationPayload';
|
|
207375
|
+
application?: Maybe<TrelloApplication>;
|
|
207376
|
+
errors?: Maybe<Array<MutationError>>;
|
|
207377
|
+
success: Scalars['Boolean']['output'];
|
|
207378
|
+
};
|
|
206495
207379
|
export declare type TrelloUpdateBoardBackgroundInput = {
|
|
206496
207380
|
background?: InputMaybe<TrelloBoardBackgroundInput>;
|
|
206497
207381
|
id: Scalars['ID']['input'];
|
|
@@ -206898,6 +207782,16 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
206898
207782
|
errors?: Maybe<Array<MutationError>>;
|
|
206899
207783
|
success: Scalars['Boolean']['output'];
|
|
206900
207784
|
};
|
|
207785
|
+
export declare type TrelloUpdateListNameInput = {
|
|
207786
|
+
id: Scalars['ID']['input'];
|
|
207787
|
+
name: Scalars['String']['input'];
|
|
207788
|
+
};
|
|
207789
|
+
export declare type TrelloUpdateListPayload = Payload & {
|
|
207790
|
+
__typename?: 'TrelloUpdateListPayload';
|
|
207791
|
+
errors?: Maybe<Array<MutationError>>;
|
|
207792
|
+
list?: Maybe<TrelloList>;
|
|
207793
|
+
success: Scalars['Boolean']['output'];
|
|
207794
|
+
};
|
|
206901
207795
|
export declare type TrelloUpdateMemberTimezoneInput = {
|
|
206902
207796
|
value: Scalars['String']['input'];
|
|
206903
207797
|
};
|