@forge/cli-shared 9.2.0-next.3-experimental-c6a3916 → 9.2.0-next.3-experimental-0949616
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 +2 -3
- package/out/graphql/graphql-types.d.ts +1410 -92
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +196 -60
- package/out/ui/text.d.ts +6 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -10
- package/package.json +2 -2
|
@@ -436,6 +436,7 @@ export type AiOpsIncidentSuggestedRcaWithAutomation = AiOpsIncidentSuggestedActi
|
|
|
436
436
|
export type AiOpsIncidentSuggestedResource = {
|
|
437
437
|
__typename?: 'AIOpsIncidentSuggestedResource';
|
|
438
438
|
link?: Maybe<Scalars['String']['output']>;
|
|
439
|
+
resourceAri?: Maybe<Scalars['ID']['output']>;
|
|
439
440
|
resourceGroupType?: Maybe<AiOpsIncidentSuggestedResourceGroupType>;
|
|
440
441
|
resourceId?: Maybe<Scalars['String']['output']>;
|
|
441
442
|
resourceKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -475,6 +476,7 @@ export type AiOpsIncidentSuggestedResourcesInProgress = {
|
|
|
475
476
|
};
|
|
476
477
|
export type AiOpsIncidentSuggestedResourcesResponse = {
|
|
477
478
|
__typename?: 'AIOpsIncidentSuggestedResourcesResponse';
|
|
479
|
+
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
478
480
|
resources?: Maybe<Array<AiOpsIncidentSuggestedResource>>;
|
|
479
481
|
};
|
|
480
482
|
export type AiOpsIncidentSuggestedResourcesResult = AiOpsIncidentSuggestedResourcesInProgress | AiOpsIncidentSuggestedResourcesResponse;
|
|
@@ -517,6 +519,7 @@ export type AiOpsIncidentSuggestionInProgress = {
|
|
|
517
519
|
};
|
|
518
520
|
export type AiOpsIncidentSuggestionResponse = {
|
|
519
521
|
__typename?: 'AIOpsIncidentSuggestionResponse';
|
|
522
|
+
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
520
523
|
incidentSummaryDescription?: Maybe<Scalars['String']['output']>;
|
|
521
524
|
incidentSummaryTitle?: Maybe<Scalars['String']['output']>;
|
|
522
525
|
probableRCADescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -810,6 +813,7 @@ export type AiOpsTriggerInvestigationInput = {
|
|
|
810
813
|
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
811
814
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
812
815
|
rcaMode?: InputMaybe<AiOpsRcaMode>;
|
|
816
|
+
rerun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
813
817
|
sourceEntityId: Scalars['ID']['input'];
|
|
814
818
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
815
819
|
userContext?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1763,6 +1767,15 @@ export type AvpAnalyticsVisualizationConfigMetadataInput = {
|
|
|
1763
1767
|
key: Scalars['String']['input'];
|
|
1764
1768
|
value: Scalars['String']['input'];
|
|
1765
1769
|
};
|
|
1770
|
+
export type AvpBusinessHours = {
|
|
1771
|
+
__typename?: 'AVPBusinessHours';
|
|
1772
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
1773
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
1774
|
+
};
|
|
1775
|
+
export type AvpBusinessHoursInput = {
|
|
1776
|
+
end?: InputMaybe<Scalars['String']['input']>;
|
|
1777
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
1778
|
+
};
|
|
1766
1779
|
export declare enum AvpCanvasRowHeight {
|
|
1767
1780
|
Large = "large",
|
|
1768
1781
|
Medium = "medium",
|
|
@@ -2261,6 +2274,7 @@ export type AvpDashboardSettings = {
|
|
|
2261
2274
|
autoRefreshInterval?: Maybe<Scalars['Int']['output']>;
|
|
2262
2275
|
cacheDuration?: Maybe<Scalars['Int']['output']>;
|
|
2263
2276
|
canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
|
|
2277
|
+
productSettings?: Maybe<AvpProductSettings>;
|
|
2264
2278
|
refreshMethod?: Maybe<AvpRefreshMethod>;
|
|
2265
2279
|
subscriptionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2266
2280
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
@@ -2271,6 +2285,7 @@ export type AvpDashboardSettingsInput = {
|
|
|
2271
2285
|
autoApplyVars?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2272
2286
|
autoRefreshInterval?: InputMaybe<Scalars['Int']['input']>;
|
|
2273
2287
|
cacheDuration?: InputMaybe<Scalars['Int']['input']>;
|
|
2288
|
+
productSettings?: InputMaybe<AvpProductSettingsInput>;
|
|
2274
2289
|
refreshMethod?: InputMaybe<AvpRefreshMethod>;
|
|
2275
2290
|
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2276
2291
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2831,6 +2846,22 @@ export declare enum AvpPlatformFilterVisibility {
|
|
|
2831
2846
|
None = "NONE",
|
|
2832
2847
|
ViewAndEdit = "VIEW_AND_EDIT"
|
|
2833
2848
|
}
|
|
2849
|
+
export type AvpProductConfig = {
|
|
2850
|
+
__typename?: 'AVPProductConfig';
|
|
2851
|
+
businessDays?: Maybe<Array<Scalars['String']['output']>>;
|
|
2852
|
+
businessHours?: Maybe<AvpBusinessHours>;
|
|
2853
|
+
};
|
|
2854
|
+
export type AvpProductConfigInput = {
|
|
2855
|
+
businessDays?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2856
|
+
businessHours?: InputMaybe<AvpBusinessHoursInput>;
|
|
2857
|
+
};
|
|
2858
|
+
export type AvpProductSettings = {
|
|
2859
|
+
__typename?: 'AVPProductSettings';
|
|
2860
|
+
opsgenie?: Maybe<AvpProductConfig>;
|
|
2861
|
+
};
|
|
2862
|
+
export type AvpProductSettingsInput = {
|
|
2863
|
+
opsgenie?: InputMaybe<AvpProductConfigInput>;
|
|
2864
|
+
};
|
|
2834
2865
|
export type AvpProductWorkspaceMapEntry = {
|
|
2835
2866
|
product: Scalars['String']['input'];
|
|
2836
2867
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -5128,6 +5159,7 @@ export type AdminSearchGroupInput = {
|
|
|
5128
5159
|
export type AdminSearchUserInput = {
|
|
5129
5160
|
accountIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5130
5161
|
accountStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5162
|
+
accountType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5131
5163
|
claimStatus?: InputMaybe<Scalars['String']['input']>;
|
|
5132
5164
|
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5133
5165
|
emailDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -5499,6 +5531,7 @@ export type AdminUsageInfo = {
|
|
|
5499
5531
|
export type AdminUser = {
|
|
5500
5532
|
__typename?: 'AdminUser';
|
|
5501
5533
|
accountStatus: Scalars['String']['output'];
|
|
5534
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
5502
5535
|
addedAt?: Maybe<Scalars['String']['output']>;
|
|
5503
5536
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
5504
5537
|
claimStatus: Scalars['String']['output'];
|
|
@@ -6013,6 +6046,7 @@ export type AgentStudioAgentTemplate = {
|
|
|
6013
6046
|
howItWorks?: Maybe<Array<Maybe<AgentStudioAgentTemplateHowItWorksStep>>>;
|
|
6014
6047
|
id: Scalars['ID']['output'];
|
|
6015
6048
|
name?: Maybe<Scalars['String']['output']>;
|
|
6049
|
+
products?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6016
6050
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6017
6051
|
};
|
|
6018
6052
|
export declare enum AgentStudioAgentTemplateHowItWorksRole {
|
|
@@ -6034,6 +6068,23 @@ export type AgentStudioAgentUsePermissionSettings = {
|
|
|
6034
6068
|
etag?: Maybe<Scalars['String']['output']>;
|
|
6035
6069
|
mode?: Maybe<AgentStudioUsePermissionMode>;
|
|
6036
6070
|
};
|
|
6071
|
+
export type AgentStudioAgentValueConfig = {
|
|
6072
|
+
__typename?: 'AgentStudioAgentValueConfig';
|
|
6073
|
+
agentId?: Maybe<Scalars['ID']['output']>;
|
|
6074
|
+
customMeasurementLabel?: Maybe<Scalars['String']['output']>;
|
|
6075
|
+
customUnitLabel?: Maybe<Scalars['String']['output']>;
|
|
6076
|
+
unitValue?: Maybe<Scalars['String']['output']>;
|
|
6077
|
+
valueType?: Maybe<AgentStudioAgentValueType>;
|
|
6078
|
+
};
|
|
6079
|
+
export type AgentStudioAgentValueConfigResult = AgentStudioAgentValueConfig | QueryError;
|
|
6080
|
+
export declare enum AgentStudioAgentValueType {
|
|
6081
|
+
ComplianceChecks = "COMPLIANCE_CHECKS",
|
|
6082
|
+
CostSavings = "COST_SAVINGS",
|
|
6083
|
+
Custom = "CUSTOM",
|
|
6084
|
+
DeflectedTickets = "DEFLECTED_TICKETS",
|
|
6085
|
+
PipelineGrowth = "PIPELINE_GROWTH",
|
|
6086
|
+
TimeSavings = "TIME_SAVINGS"
|
|
6087
|
+
}
|
|
6037
6088
|
export type AgentStudioAgentVersion = {
|
|
6038
6089
|
__typename?: 'AgentStudioAgentVersion';
|
|
6039
6090
|
id: Scalars['ID']['output'];
|
|
@@ -6480,6 +6531,11 @@ export type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
6480
6531
|
scenario?: Maybe<AgentStudioScenario>;
|
|
6481
6532
|
success: Scalars['Boolean']['output'];
|
|
6482
6533
|
};
|
|
6534
|
+
export type AgentStudioCustomValueConfigInput = {
|
|
6535
|
+
customMeasurementLabel: Scalars['String']['input'];
|
|
6536
|
+
customUnitLabel: Scalars['String']['input'];
|
|
6537
|
+
unitValue: Scalars['String']['input'];
|
|
6538
|
+
};
|
|
6483
6539
|
export type AgentStudioDataset = {
|
|
6484
6540
|
__typename?: 'AgentStudioDataset';
|
|
6485
6541
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -6920,6 +6976,17 @@ export type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
|
6920
6976
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
6921
6977
|
url?: Maybe<Scalars['String']['output']>;
|
|
6922
6978
|
};
|
|
6979
|
+
export type AgentStudioPresetValueConfigInput = {
|
|
6980
|
+
unitValue: Scalars['String']['input'];
|
|
6981
|
+
valueType: AgentStudioPresetValueType;
|
|
6982
|
+
};
|
|
6983
|
+
export declare enum AgentStudioPresetValueType {
|
|
6984
|
+
ComplianceChecks = "COMPLIANCE_CHECKS",
|
|
6985
|
+
CostSavings = "COST_SAVINGS",
|
|
6986
|
+
DeflectedTickets = "DEFLECTED_TICKETS",
|
|
6987
|
+
PipelineGrowth = "PIPELINE_GROWTH",
|
|
6988
|
+
TimeSavings = "TIME_SAVINGS"
|
|
6989
|
+
}
|
|
6923
6990
|
export type AgentStudioProductAriAgentResult = {
|
|
6924
6991
|
__typename?: 'AgentStudioProductAriAgentResult';
|
|
6925
6992
|
agent?: Maybe<AgentStudioAgentResult>;
|
|
@@ -7457,6 +7524,16 @@ export type AgentStudioUpdateAgentUsePermissionSettingsInput = {
|
|
|
7457
7524
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
7458
7525
|
mode?: InputMaybe<AgentStudioUsePermissionMode>;
|
|
7459
7526
|
};
|
|
7527
|
+
export type AgentStudioUpdateAgentValueConfigInput = {
|
|
7528
|
+
custom?: InputMaybe<AgentStudioCustomValueConfigInput>;
|
|
7529
|
+
preset?: InputMaybe<AgentStudioPresetValueConfigInput>;
|
|
7530
|
+
};
|
|
7531
|
+
export type AgentStudioUpdateAgentValueConfigPayload = Payload & {
|
|
7532
|
+
__typename?: 'AgentStudioUpdateAgentValueConfigPayload';
|
|
7533
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7534
|
+
success: Scalars['Boolean']['output'];
|
|
7535
|
+
valueConfig?: Maybe<AgentStudioAgentValueConfig>;
|
|
7536
|
+
};
|
|
7460
7537
|
export type AgentStudioUpdateAgentVerificationPayload = Payload & {
|
|
7461
7538
|
__typename?: 'AgentStudioUpdateAgentVerificationPayload';
|
|
7462
7539
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -7819,6 +7896,7 @@ export declare enum AgentWorkspaceBulkImportJobStatus {
|
|
|
7819
7896
|
}
|
|
7820
7897
|
export type AgentWorkspaceBulkUpsertDraftedRoutingTableEntriesInput = {
|
|
7821
7898
|
cloudId: Scalars['ID']['input'];
|
|
7899
|
+
draftId?: InputMaybe<Scalars['ID']['input']>;
|
|
7822
7900
|
entries: Array<AgentWorkspaceBulkUpsertDraftedRoutingTableEntryInput>;
|
|
7823
7901
|
projectKey: Scalars['String']['input'];
|
|
7824
7902
|
};
|
|
@@ -7898,6 +7976,38 @@ export type AgentWorkspaceCapacitySummary = {
|
|
|
7898
7976
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
7899
7977
|
totalUtilizationPercent: Scalars['Float']['output'];
|
|
7900
7978
|
};
|
|
7979
|
+
export declare enum AgentWorkspaceConfigurableRoutingInput {
|
|
7980
|
+
Availability = "AVAILABILITY",
|
|
7981
|
+
Capacity = "CAPACITY",
|
|
7982
|
+
Schedule = "SCHEDULE",
|
|
7983
|
+
Skills = "SKILLS"
|
|
7984
|
+
}
|
|
7985
|
+
export type AgentWorkspaceConfigurableRoutingInputSetting = {
|
|
7986
|
+
__typename?: 'AgentWorkspaceConfigurableRoutingInputSetting';
|
|
7987
|
+
enabled: Scalars['Boolean']['output'];
|
|
7988
|
+
input: AgentWorkspaceConfigurableRoutingInput;
|
|
7989
|
+
};
|
|
7990
|
+
export type AgentWorkspaceConfigurableRoutingInputUpdate = {
|
|
7991
|
+
enabled: Scalars['Boolean']['input'];
|
|
7992
|
+
input: AgentWorkspaceConfigurableRoutingInput;
|
|
7993
|
+
};
|
|
7994
|
+
export declare enum AgentWorkspaceConfigurableRoutingTrigger {
|
|
7995
|
+
IssueCreated = "ISSUE_CREATED",
|
|
7996
|
+
IssueMoved = "ISSUE_MOVED",
|
|
7997
|
+
IssueReopened = "ISSUE_REOPENED",
|
|
7998
|
+
IssueUpdated = "ISSUE_UPDATED",
|
|
7999
|
+
ServiceUpdated = "SERVICE_UPDATED",
|
|
8000
|
+
TeamUpdated = "TEAM_UPDATED"
|
|
8001
|
+
}
|
|
8002
|
+
export type AgentWorkspaceConfigurableRoutingTriggerSetting = {
|
|
8003
|
+
__typename?: 'AgentWorkspaceConfigurableRoutingTriggerSetting';
|
|
8004
|
+
enabled: Scalars['Boolean']['output'];
|
|
8005
|
+
trigger: AgentWorkspaceConfigurableRoutingTrigger;
|
|
8006
|
+
};
|
|
8007
|
+
export type AgentWorkspaceConfigurableRoutingTriggerUpdate = {
|
|
8008
|
+
enabled: Scalars['Boolean']['input'];
|
|
8009
|
+
trigger: AgentWorkspaceConfigurableRoutingTrigger;
|
|
8010
|
+
};
|
|
7901
8011
|
export type AgentWorkspaceConfusionMatrix = {
|
|
7902
8012
|
__typename?: 'AgentWorkspaceConfusionMatrix';
|
|
7903
8013
|
falseNegatives: Scalars['Int']['output'];
|
|
@@ -8563,12 +8673,24 @@ export type AgentWorkspaceServiceConnection = {
|
|
|
8563
8673
|
errors?: Maybe<Array<QueryError>>;
|
|
8564
8674
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
|
|
8565
8675
|
pageInfo: PageInfo;
|
|
8676
|
+
totalCount: Scalars['Int']['output'];
|
|
8566
8677
|
};
|
|
8567
8678
|
export type AgentWorkspaceServiceEdge = {
|
|
8568
8679
|
__typename?: 'AgentWorkspaceServiceEdge';
|
|
8569
8680
|
cursor: Scalars['String']['output'];
|
|
8570
8681
|
node: AgentWorkspaceService;
|
|
8571
8682
|
};
|
|
8683
|
+
export type AgentWorkspaceServiceOptionsPage = {
|
|
8684
|
+
__typename?: 'AgentWorkspaceServiceOptionsPage';
|
|
8685
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
8686
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
8687
|
+
limit: Scalars['Int']['output'];
|
|
8688
|
+
offset: Scalars['Int']['output'];
|
|
8689
|
+
page: Scalars['Int']['output'];
|
|
8690
|
+
services: Array<AgentWorkspaceService>;
|
|
8691
|
+
totalCount: Scalars['Int']['output'];
|
|
8692
|
+
totalPages: Scalars['Int']['output'];
|
|
8693
|
+
};
|
|
8572
8694
|
export declare enum AgentWorkspaceServiceProcessingStatus {
|
|
8573
8695
|
Enriched = "ENRICHED",
|
|
8574
8696
|
Enriching = "ENRICHING",
|
|
@@ -8615,6 +8737,12 @@ export type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
|
8615
8737
|
projectId: Scalars['ID']['input'];
|
|
8616
8738
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8617
8739
|
};
|
|
8740
|
+
export type AgentWorkspaceSetShiftReminderConfigInput = {
|
|
8741
|
+
cloudId: Scalars['ID']['input'];
|
|
8742
|
+
enabled: Scalars['Boolean']['input'];
|
|
8743
|
+
projectId: Scalars['ID']['input'];
|
|
8744
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8745
|
+
};
|
|
8618
8746
|
export type AgentWorkspaceSetTeamCapacitiesInput = {
|
|
8619
8747
|
cloudId: Scalars['ID']['input'];
|
|
8620
8748
|
projectKey: Scalars['String']['input'];
|
|
@@ -8666,6 +8794,25 @@ export type AgentWorkspaceShiftEditBoundsInput = {
|
|
|
8666
8794
|
projectARI: Scalars['ID']['input'];
|
|
8667
8795
|
scheduleId: Scalars['ID']['input'];
|
|
8668
8796
|
};
|
|
8797
|
+
export type AgentWorkspaceShiftReminderConfig = {
|
|
8798
|
+
__typename?: 'AgentWorkspaceShiftReminderConfig';
|
|
8799
|
+
enabled: Scalars['Boolean']['output'];
|
|
8800
|
+
projectId: Scalars['ID']['output'];
|
|
8801
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
8802
|
+
updatedBy?: Maybe<Scalars['ID']['output']>;
|
|
8803
|
+
window: AgentWorkspaceShiftReminderWindow;
|
|
8804
|
+
};
|
|
8805
|
+
export type AgentWorkspaceShiftReminderConfigPayload = {
|
|
8806
|
+
__typename?: 'AgentWorkspaceShiftReminderConfigPayload';
|
|
8807
|
+
errors: Array<AgentWorkspaceMutationError>;
|
|
8808
|
+
shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
8809
|
+
success: Scalars['Boolean']['output'];
|
|
8810
|
+
};
|
|
8811
|
+
export declare enum AgentWorkspaceShiftReminderWindow {
|
|
8812
|
+
Minutes_15 = "MINUTES_15",
|
|
8813
|
+
Minutes_30 = "MINUTES_30",
|
|
8814
|
+
Minutes_60 = "MINUTES_60"
|
|
8815
|
+
}
|
|
8669
8816
|
export type AgentWorkspaceShiftsAppliedFilters = {
|
|
8670
8817
|
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
8671
8818
|
agentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -8829,10 +8976,12 @@ export type AgentWorkspaceSkillUpdatePayload = {
|
|
|
8829
8976
|
export type AgentWorkspaceSmartRoutingConfig = {
|
|
8830
8977
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
8831
8978
|
enabled: Scalars['Boolean']['output'];
|
|
8979
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
8832
8980
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
8833
8981
|
serviceFieldName?: Maybe<Scalars['String']['output']>;
|
|
8834
8982
|
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
8835
8983
|
setupVersion: Scalars['Int']['output'];
|
|
8984
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
8836
8985
|
warning?: Maybe<Scalars['String']['output']>;
|
|
8837
8986
|
};
|
|
8838
8987
|
export type AgentWorkspaceSmartRoutingDryRun = {
|
|
@@ -9140,6 +9289,20 @@ export type AgentWorkspaceUnassignCoverShiftPayload = {
|
|
|
9140
9289
|
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
9141
9290
|
success: Scalars['Boolean']['output'];
|
|
9142
9291
|
};
|
|
9292
|
+
export type AgentWorkspaceUpdateConfigurableRoutingInputsInput = {
|
|
9293
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputUpdate>;
|
|
9294
|
+
projectAri: Scalars['ID']['input'];
|
|
9295
|
+
};
|
|
9296
|
+
export type AgentWorkspaceUpdateConfigurableRoutingPayload = {
|
|
9297
|
+
__typename?: 'AgentWorkspaceUpdateConfigurableRoutingPayload';
|
|
9298
|
+
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
9299
|
+
success: Scalars['Boolean']['output'];
|
|
9300
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerSetting>;
|
|
9301
|
+
};
|
|
9302
|
+
export type AgentWorkspaceUpdateConfigurableRoutingTriggersInput = {
|
|
9303
|
+
projectAri: Scalars['ID']['input'];
|
|
9304
|
+
triggers: Array<AgentWorkspaceConfigurableRoutingTriggerUpdate>;
|
|
9305
|
+
};
|
|
9143
9306
|
export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
9144
9307
|
cloudId: Scalars['ID']['input'];
|
|
9145
9308
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -10387,7 +10550,8 @@ export declare enum AppFeatureKey {
|
|
|
10387
10550
|
HasExposedCredentials = "HAS_EXPOSED_CREDENTIALS",
|
|
10388
10551
|
HasResourceRestrictedToken = "HAS_RESOURCE_RESTRICTED_TOKEN",
|
|
10389
10552
|
IsPersonalApp = "IS_PERSONAL_APP",
|
|
10390
|
-
SupportsCompute = "SUPPORTS_COMPUTE"
|
|
10553
|
+
SupportsCompute = "SUPPORTS_COMPUTE",
|
|
10554
|
+
SupportsCustomEnvironments = "SUPPORTS_CUSTOM_ENVIRONMENTS"
|
|
10391
10555
|
}
|
|
10392
10556
|
export type AppFeaturesExposedCredentialsInput = {
|
|
10393
10557
|
contactLink?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11748,7 +11912,8 @@ export type AssetsBundle = {
|
|
|
11748
11912
|
export type AssetsBundleInstantiation = {
|
|
11749
11913
|
__typename?: 'AssetsBundleInstantiation';
|
|
11750
11914
|
bundle: AssetsBundle;
|
|
11751
|
-
|
|
11915
|
+
dependencyInstantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11916
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
11752
11917
|
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
11753
11918
|
};
|
|
11754
11919
|
export type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
@@ -12515,6 +12680,8 @@ export type AssetsDmDataSourceDetails = {
|
|
|
12515
12680
|
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
12516
12681
|
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
12517
12682
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
12683
|
+
fetchError?: Maybe<AssetsDmDataSourceError>;
|
|
12684
|
+
fetchWarning?: Maybe<Scalars['String']['output']>;
|
|
12518
12685
|
isCloudFetchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
12519
12686
|
isTemplate: Scalars['Boolean']['output'];
|
|
12520
12687
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -12522,6 +12689,12 @@ export type AssetsDmDataSourceDetails = {
|
|
|
12522
12689
|
objectClassName: Scalars['String']['output'];
|
|
12523
12690
|
schedule?: Maybe<AssetsDmDataSourceSchedule>;
|
|
12524
12691
|
steps: AssetsDmDataSourceSteps;
|
|
12692
|
+
transformError?: Maybe<AssetsDmDataSourceError>;
|
|
12693
|
+
};
|
|
12694
|
+
export type AssetsDmDataSourceError = {
|
|
12695
|
+
__typename?: 'AssetsDMDataSourceError';
|
|
12696
|
+
message: Scalars['String']['output'];
|
|
12697
|
+
stackTrace: Scalars['String']['output'];
|
|
12525
12698
|
};
|
|
12526
12699
|
export type AssetsDmDataSourceFormFields = {
|
|
12527
12700
|
__typename?: 'AssetsDMDataSourceFormFields';
|
|
@@ -13766,6 +13939,19 @@ export type AssetsDmObjectsListSearchGroupOutput = {
|
|
|
13766
13939
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13767
13940
|
searchItems: Array<AssetsDmObjectsListSearchItemOutput>;
|
|
13768
13941
|
};
|
|
13942
|
+
export type AssetsDmObjectsListSearchGroupOutputV2 = {
|
|
13943
|
+
__typename?: 'AssetsDMObjectsListSearchGroupOutputV2';
|
|
13944
|
+
condition?: Maybe<AssetsDmObjectsListSearchGroupCondition>;
|
|
13945
|
+
isGroupDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13946
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
13947
|
+
searchItems?: Maybe<Array<AssetsDmObjectsListSearchItemOutputV2>>;
|
|
13948
|
+
};
|
|
13949
|
+
export type AssetsDmObjectsListSearchGroupV2 = {
|
|
13950
|
+
condition?: InputMaybe<Scalars['String']['input']>;
|
|
13951
|
+
isGroupDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13952
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
13953
|
+
searchItems?: Array<AssetsDmObjectsListSearchItemV2>;
|
|
13954
|
+
};
|
|
13769
13955
|
export type AssetsDmObjectsListSearchItem = {
|
|
13770
13956
|
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
13771
13957
|
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
@@ -13791,6 +13977,48 @@ export type AssetsDmObjectsListSearchItemOutput = {
|
|
|
13791
13977
|
values?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13792
13978
|
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13793
13979
|
};
|
|
13980
|
+
export type AssetsDmObjectsListSearchItemOutputV2 = {
|
|
13981
|
+
__typename?: 'AssetsDMObjectsListSearchItemOutputV2';
|
|
13982
|
+
attributeImportanceCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13983
|
+
columnName?: Maybe<Scalars['String']['output']>;
|
|
13984
|
+
condition?: Maybe<AssetsDmObjectsListSearchCondition>;
|
|
13985
|
+
isAttribute?: Maybe<Scalars['Boolean']['output']>;
|
|
13986
|
+
isDataSource?: Maybe<Scalars['Boolean']['output']>;
|
|
13987
|
+
operator?: Maybe<AssetsDmObjectsListSearchOperator>;
|
|
13988
|
+
rawColumnType?: Maybe<AssetsDmObjectsListRawColumnType>;
|
|
13989
|
+
reasonCodes?: Maybe<Array<Scalars['String']['output']>>;
|
|
13990
|
+
savedSearch?: Maybe<AssetsDmSavedSearchSubtreeV2>;
|
|
13991
|
+
savedSearchId?: Maybe<Scalars['ID']['output']>;
|
|
13992
|
+
searchItemValues?: Maybe<Array<AssetsDmObjectsListSearchItemValueV2>>;
|
|
13993
|
+
tagCodes?: Maybe<Array<Scalars['Float']['output']>>;
|
|
13994
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
13995
|
+
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
13996
|
+
whereDataSource?: Maybe<Scalars['String']['output']>;
|
|
13997
|
+
};
|
|
13998
|
+
export type AssetsDmObjectsListSearchItemV2 = {
|
|
13999
|
+
attributeImportanceCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14000
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
14001
|
+
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
14002
|
+
isAttribute?: Scalars['Boolean']['input'];
|
|
14003
|
+
isDataSource?: Scalars['Boolean']['input'];
|
|
14004
|
+
operator?: InputMaybe<AssetsDmObjectsListSearchOperator>;
|
|
14005
|
+
rawColumnType?: InputMaybe<AssetsDmObjectsListRawColumnType>;
|
|
14006
|
+
reasonCodes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14007
|
+
savedSearch?: InputMaybe<AssetsDmSavedSearchSubtreeInputV2>;
|
|
14008
|
+
savedSearchId?: InputMaybe<Scalars['ID']['input']>;
|
|
14009
|
+
searchItemValues?: InputMaybe<Array<AssetsDmObjectsListSearchItemValueV2Input>>;
|
|
14010
|
+
tagCodes?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
14011
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
14012
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14013
|
+
whereDataSource?: InputMaybe<Scalars['String']['input']>;
|
|
14014
|
+
};
|
|
14015
|
+
export type AssetsDmObjectsListSearchItemValueV2 = {
|
|
14016
|
+
__typename?: 'AssetsDMObjectsListSearchItemValueV2';
|
|
14017
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
14018
|
+
};
|
|
14019
|
+
export type AssetsDmObjectsListSearchItemValueV2Input = {
|
|
14020
|
+
label: Scalars['String']['input'];
|
|
14021
|
+
};
|
|
13794
14022
|
export declare enum AssetsDmObjectsListSearchOperator {
|
|
13795
14023
|
AfterNext = "AFTER_NEXT",
|
|
13796
14024
|
ComputeIssues = "COMPUTE_ISSUES",
|
|
@@ -13921,9 +14149,30 @@ export type AssetsDmSavedSearchDetails = {
|
|
|
13921
14149
|
savedSearchId: Scalars['ID']['output'];
|
|
13922
14150
|
searchGroups: Array<AssetsDmObjectsListSearchGroupOutput>;
|
|
13923
14151
|
};
|
|
14152
|
+
export type AssetsDmSavedSearchDetailsV2 = {
|
|
14153
|
+
__typename?: 'AssetsDMSavedSearchDetailsV2';
|
|
14154
|
+
calcDate?: Maybe<Scalars['String']['output']>;
|
|
14155
|
+
isExportToAsset?: Maybe<Scalars['Boolean']['output']>;
|
|
14156
|
+
isPublic?: Maybe<Scalars['Boolean']['output']>;
|
|
14157
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14158
|
+
noOfExportToAssetIssues?: Maybe<Scalars['Int']['output']>;
|
|
14159
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
14160
|
+
previousCalcDate?: Maybe<Scalars['String']['output']>;
|
|
14161
|
+
previousResultCount?: Maybe<Scalars['Int']['output']>;
|
|
14162
|
+
resultCount?: Maybe<Scalars['Int']['output']>;
|
|
14163
|
+
savedSearchId: Scalars['ID']['output'];
|
|
14164
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14165
|
+
};
|
|
13924
14166
|
export type AssetsDmSavedSearchInput = {
|
|
13925
14167
|
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
13926
14168
|
};
|
|
14169
|
+
export type AssetsDmSavedSearchSubtreeInputV2 = {
|
|
14170
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
14171
|
+
};
|
|
14172
|
+
export type AssetsDmSavedSearchSubtreeV2 = {
|
|
14173
|
+
__typename?: 'AssetsDMSavedSearchSubtreeV2';
|
|
14174
|
+
searchGroups?: Maybe<Array<AssetsDmObjectsListSearchGroupOutputV2>>;
|
|
14175
|
+
};
|
|
13927
14176
|
export type AssetsDmSavedSearchesCreateResponse = {
|
|
13928
14177
|
__typename?: 'AssetsDMSavedSearchesCreateResponse';
|
|
13929
14178
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -14393,6 +14642,7 @@ export type AssetsObjectType = Node & {
|
|
|
14393
14642
|
links?: Maybe<AssetsLinks>;
|
|
14394
14643
|
name?: Maybe<Scalars['String']['output']>;
|
|
14395
14644
|
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
14645
|
+
parentObjectType?: Maybe<AssetsObjectType>;
|
|
14396
14646
|
schema?: Maybe<AssetsSchema>;
|
|
14397
14647
|
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
14398
14648
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -14722,6 +14972,7 @@ export type AssetsVerticalAssetTypesTrackingConnection = {
|
|
|
14722
14972
|
__typename?: 'AssetsVerticalAssetTypesTrackingConnection';
|
|
14723
14973
|
edges: Array<AssetsVerticalAssetTypesTrackingEdge>;
|
|
14724
14974
|
pageInfo: PageInfo;
|
|
14975
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14725
14976
|
};
|
|
14726
14977
|
export type AssetsVerticalAssetTypesTrackingEdge = {
|
|
14727
14978
|
__typename?: 'AssetsVerticalAssetTypesTrackingEdge';
|
|
@@ -14867,6 +15118,11 @@ export declare enum AssetsVerticalBundleType {
|
|
|
14867
15118
|
Ham = "HAM",
|
|
14868
15119
|
Osc = "OSC"
|
|
14869
15120
|
}
|
|
15121
|
+
export type AssetsVerticalCheckPermissionsResult = AssetsVerticalCheckPermissionsSuccess | QueryError;
|
|
15122
|
+
export type AssetsVerticalCheckPermissionsSuccess = {
|
|
15123
|
+
__typename?: 'AssetsVerticalCheckPermissionsSuccess';
|
|
15124
|
+
results: Array<AssetsVerticalPermissionCheckResult>;
|
|
15125
|
+
};
|
|
14870
15126
|
export type AssetsVerticalCountByStatus = {
|
|
14871
15127
|
__typename?: 'AssetsVerticalCountByStatus';
|
|
14872
15128
|
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
@@ -15341,7 +15597,9 @@ export type AssetsVerticalItemMapping = {
|
|
|
15341
15597
|
id: Scalars['ID']['output'];
|
|
15342
15598
|
itemId: Scalars['ID']['output'];
|
|
15343
15599
|
itemType: AssetsVerticalItemType;
|
|
15600
|
+
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
15344
15601
|
siteId: Scalars['ID']['output'];
|
|
15602
|
+
space?: Maybe<JiraProject>;
|
|
15345
15603
|
spaceId: Scalars['ID']['output'];
|
|
15346
15604
|
workspaceId: Scalars['ID']['output'];
|
|
15347
15605
|
};
|
|
@@ -15349,6 +15607,7 @@ export type AssetsVerticalItemMappingConnection = {
|
|
|
15349
15607
|
__typename?: 'AssetsVerticalItemMappingConnection';
|
|
15350
15608
|
edges: Array<AssetsVerticalItemMappingEdge>;
|
|
15351
15609
|
pageInfo: PageInfo;
|
|
15610
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15352
15611
|
};
|
|
15353
15612
|
export type AssetsVerticalItemMappingEdge = {
|
|
15354
15613
|
__typename?: 'AssetsVerticalItemMappingEdge';
|
|
@@ -15430,11 +15689,34 @@ export type AssetsVerticalNonConfiguredAssetType = {
|
|
|
15430
15689
|
objSchema?: Maybe<AssetsSchema>;
|
|
15431
15690
|
objType?: Maybe<AssetsObjectType>;
|
|
15432
15691
|
};
|
|
15433
|
-
export type
|
|
15434
|
-
__typename?: '
|
|
15435
|
-
|
|
15692
|
+
export type AssetsVerticalNonConfiguredAssetTypeConnection = {
|
|
15693
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeConnection';
|
|
15694
|
+
edges: Array<AssetsVerticalNonConfiguredAssetTypeEdge>;
|
|
15695
|
+
pageInfo: PageInfo;
|
|
15696
|
+
};
|
|
15697
|
+
export type AssetsVerticalNonConfiguredAssetTypeEdge = {
|
|
15698
|
+
__typename?: 'AssetsVerticalNonConfiguredAssetTypeEdge';
|
|
15699
|
+
cursor: Scalars['String']['output'];
|
|
15700
|
+
node: AssetsVerticalNonConfiguredAssetType;
|
|
15701
|
+
};
|
|
15702
|
+
export type AssetsVerticalNonConfiguredItem = {
|
|
15703
|
+
__typename?: 'AssetsVerticalNonConfiguredItem';
|
|
15704
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15705
|
+
itemId: Scalars['ID']['output'];
|
|
15706
|
+
itemType: AssetsVerticalItemType;
|
|
15707
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15708
|
+
spaceId: Scalars['ID']['output'];
|
|
15709
|
+
};
|
|
15710
|
+
export type AssetsVerticalNonConfiguredItemMappingConnection = {
|
|
15711
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingConnection';
|
|
15712
|
+
edges: Array<AssetsVerticalNonConfiguredItemMappingEdge>;
|
|
15713
|
+
pageInfo: PageInfo;
|
|
15714
|
+
};
|
|
15715
|
+
export type AssetsVerticalNonConfiguredItemMappingEdge = {
|
|
15716
|
+
__typename?: 'AssetsVerticalNonConfiguredItemMappingEdge';
|
|
15717
|
+
cursor: Scalars['String']['output'];
|
|
15718
|
+
node: AssetsVerticalNonConfiguredItem;
|
|
15436
15719
|
};
|
|
15437
|
-
export type AssetsVerticalNonConfiguredAssetTypesResult = AssetsVerticalNonConfiguredAssetTypesPayload | QueryError;
|
|
15438
15720
|
export type AssetsVerticalObjectType = {
|
|
15439
15721
|
__typename?: 'AssetsVerticalObjectType';
|
|
15440
15722
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -15505,6 +15787,18 @@ export type AssetsVerticalObjectsSuccess = {
|
|
|
15505
15787
|
pageInfo?: Maybe<PageInfo>;
|
|
15506
15788
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15507
15789
|
};
|
|
15790
|
+
export type AssetsVerticalPermissionCheckInput = {
|
|
15791
|
+
dontRequirePrincipalInSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15792
|
+
permissionId: Scalars['String']['input'];
|
|
15793
|
+
resourceId: Scalars['ID']['input'];
|
|
15794
|
+
};
|
|
15795
|
+
export type AssetsVerticalPermissionCheckResult = {
|
|
15796
|
+
__typename?: 'AssetsVerticalPermissionCheckResult';
|
|
15797
|
+
dontRequirePrincipalInSite: Scalars['Boolean']['output'];
|
|
15798
|
+
permissionId: Scalars['String']['output'];
|
|
15799
|
+
permitted: Scalars['Boolean']['output'];
|
|
15800
|
+
resourceId: Scalars['ID']['output'];
|
|
15801
|
+
};
|
|
15508
15802
|
export type AssetsVerticalPinInsightPayload = Payload & {
|
|
15509
15803
|
__typename?: 'AssetsVerticalPinInsightPayload';
|
|
15510
15804
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15627,6 +15921,10 @@ export type AssetsVerticalSchemaTemplate = {
|
|
|
15627
15921
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
15628
15922
|
type: Scalars['String']['output'];
|
|
15629
15923
|
};
|
|
15924
|
+
export type AssetsVerticalSpaceDetails = {
|
|
15925
|
+
__typename?: 'AssetsVerticalSpaceDetails';
|
|
15926
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
15927
|
+
};
|
|
15630
15928
|
export type AssetsVerticalStatusCount = {
|
|
15631
15929
|
__typename?: 'AssetsVerticalStatusCount';
|
|
15632
15930
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -15653,6 +15951,26 @@ export type AssetsVerticalStockroomObjectsInput = {
|
|
|
15653
15951
|
workspaceId: Scalars['ID']['input'];
|
|
15654
15952
|
};
|
|
15655
15953
|
export type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObjects | QueryError;
|
|
15954
|
+
export type AssetsVerticalTenantContext = {
|
|
15955
|
+
__typename?: 'AssetsVerticalTenantContext';
|
|
15956
|
+
assetsVerticalWorkspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
15957
|
+
};
|
|
15958
|
+
export declare enum AssetsVerticalTenantContextQueryErrorCode {
|
|
15959
|
+
NotFound = "NOT_FOUND",
|
|
15960
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
15961
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
15962
|
+
}
|
|
15963
|
+
export type AssetsVerticalTenantContextQueryErrorExtension = QueryErrorExtension & {
|
|
15964
|
+
__typename?: 'AssetsVerticalTenantContextQueryErrorExtension';
|
|
15965
|
+
code?: Maybe<AssetsVerticalTenantContextQueryErrorCode>;
|
|
15966
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
15967
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15968
|
+
};
|
|
15969
|
+
export type AssetsVerticalTenantContextResult = AssetsVerticalTenantContextSuccess | QueryError;
|
|
15970
|
+
export type AssetsVerticalTenantContextSuccess = {
|
|
15971
|
+
__typename?: 'AssetsVerticalTenantContextSuccess';
|
|
15972
|
+
tenantContext: AssetsVerticalTenantContext;
|
|
15973
|
+
};
|
|
15656
15974
|
export type AssetsVerticalUpdateCustomInsightInput = {
|
|
15657
15975
|
category: AssetsVerticalInsightCategory;
|
|
15658
15976
|
cloudId: Scalars['ID']['input'];
|
|
@@ -15729,6 +16047,7 @@ export type AssetsVerticalVerticalInstantiationCategory = {
|
|
|
15729
16047
|
cloudId: Scalars['ID']['output'];
|
|
15730
16048
|
id: Scalars['ID']['output'];
|
|
15731
16049
|
items?: Maybe<AssetsVerticalItemMappingConnection>;
|
|
16050
|
+
spaceDetails?: Maybe<AssetsVerticalSpaceDetails>;
|
|
15732
16051
|
status: AssetsVerticalVerticalInstantiationCategoryStatus;
|
|
15733
16052
|
verticalInstantiationId: Scalars['ID']['output'];
|
|
15734
16053
|
workspaceId: Scalars['ID']['output'];
|
|
@@ -17100,7 +17419,7 @@ export type CcpAllowancePoolAllocationsResponse = {
|
|
|
17100
17419
|
billingEntity?: Maybe<Scalars['String']['output']>;
|
|
17101
17420
|
enforcementDetails?: Maybe<CcpEnforcementDetails>;
|
|
17102
17421
|
enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
|
|
17103
|
-
id?: Maybe<Scalars['
|
|
17422
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17104
17423
|
latestUsage?: Maybe<Scalars['Float']['output']>;
|
|
17105
17424
|
overageCap?: Maybe<Scalars['Float']['output']>;
|
|
17106
17425
|
poolId?: Maybe<Scalars['String']['output']>;
|
|
@@ -17421,7 +17740,7 @@ export declare enum CcpConcessionAllowedRedemptionMethod {
|
|
|
17421
17740
|
export type CcpConcessionApplicationReasonWithCustomisable = {
|
|
17422
17741
|
__typename?: 'CcpConcessionApplicationReasonWithCustomisable';
|
|
17423
17742
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
17424
|
-
id?: Maybe<Scalars['
|
|
17743
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
17425
17744
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
17426
17745
|
};
|
|
17427
17746
|
export type CcpConcessionBenefit = {
|
|
@@ -17830,6 +18149,9 @@ export type CcpEntitlementExperienceCapabilitiesPlaceOrderLiteArgs = {
|
|
|
17830
18149
|
source: Scalars['String']['input'];
|
|
17831
18150
|
targetOffering: CcpPlaceOrderLiteTargetOfferingInput;
|
|
17832
18151
|
};
|
|
18152
|
+
export type CcpEntitlementExperienceCapabilitiesSetUsageLimitArgs = {
|
|
18153
|
+
action?: InputMaybe<CcpSetUsageLimitAction>;
|
|
18154
|
+
};
|
|
17833
18155
|
export type CcpEntitlementOfferingTransition = {
|
|
17834
18156
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
17835
18157
|
id: Scalars['ID']['output'];
|
|
@@ -18229,7 +18551,7 @@ export type CcpOfferingRelationship = {
|
|
|
18229
18551
|
catalogAccountId?: Maybe<Scalars['String']['output']>;
|
|
18230
18552
|
description?: Maybe<Scalars['String']['output']>;
|
|
18231
18553
|
from?: Maybe<CcpRelationshipNode>;
|
|
18232
|
-
id?: Maybe<Scalars['
|
|
18554
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18233
18555
|
relationshipTemplateId?: Maybe<Scalars['String']['output']>;
|
|
18234
18556
|
relationshipType?: Maybe<CcpRelationshipType>;
|
|
18235
18557
|
status?: Maybe<CcpRelationshipStatus>;
|
|
@@ -18606,7 +18928,7 @@ export type CcpPromotionAndOrRuleCondition = {
|
|
|
18606
18928
|
};
|
|
18607
18929
|
export type CcpPromotionApplicationReason = {
|
|
18608
18930
|
__typename?: 'CcpPromotionApplicationReason';
|
|
18609
|
-
id?: Maybe<Scalars['
|
|
18931
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18610
18932
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18611
18933
|
};
|
|
18612
18934
|
export type CcpPromotionApplicationReasonSetLimiter = {
|
|
@@ -18617,7 +18939,7 @@ export type CcpPromotionApplicationReasonSetLimiter = {
|
|
|
18617
18939
|
export type CcpPromotionApplicationReasonWithCustomisable = {
|
|
18618
18940
|
__typename?: 'CcpPromotionApplicationReasonWithCustomisable';
|
|
18619
18941
|
customisable?: Maybe<CcpCustomisableApplicationReason>;
|
|
18620
|
-
id?: Maybe<Scalars['
|
|
18942
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
18621
18943
|
readableName?: Maybe<Scalars['String']['output']>;
|
|
18622
18944
|
};
|
|
18623
18945
|
export type CcpPromotionBenefit = {
|
|
@@ -19322,6 +19644,10 @@ export type CcpSearchTimestampBoundsInput = {
|
|
|
19322
19644
|
gte?: InputMaybe<Scalars['String']['input']>;
|
|
19323
19645
|
lte?: InputMaybe<Scalars['String']['input']>;
|
|
19324
19646
|
};
|
|
19647
|
+
export declare enum CcpSetUsageLimitAction {
|
|
19648
|
+
Disable = "DISABLE",
|
|
19649
|
+
Set = "SET"
|
|
19650
|
+
}
|
|
19325
19651
|
export type CcpSetUsageLimitExperienceCapability = CommerceExperienceCapability & {
|
|
19326
19652
|
__typename?: 'CcpSetUsageLimitExperienceCapability';
|
|
19327
19653
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19390,7 +19716,7 @@ export declare enum CcpSupportedBillingSystems {
|
|
|
19390
19716
|
}
|
|
19391
19717
|
export type CcpTaxId = {
|
|
19392
19718
|
__typename?: 'CcpTaxId';
|
|
19393
|
-
id?: Maybe<Scalars['
|
|
19719
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
19394
19720
|
label?: Maybe<Scalars['String']['output']>;
|
|
19395
19721
|
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
19396
19722
|
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
@@ -30918,6 +31244,7 @@ export type ConfluenceContentModified = {
|
|
|
30918
31244
|
inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
|
|
30919
31245
|
inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
|
|
30920
31246
|
markdownModeUpdated?: Maybe<ConfluenceMarkdownModeUpdated>;
|
|
31247
|
+
originTabId?: Maybe<Scalars['String']['output']>;
|
|
30921
31248
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
30922
31249
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
30923
31250
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
@@ -32293,6 +32620,7 @@ export type ConfluenceForgeExtension = {
|
|
|
32293
32620
|
oauthClientId: Scalars['ID']['output'];
|
|
32294
32621
|
principal?: Maybe<ConfluenceExtensionPrincipal>;
|
|
32295
32622
|
properties: Array<KeyValueHierarchyMap>;
|
|
32623
|
+
sandboxPolicies?: Maybe<Array<Scalars['String']['output']>>;
|
|
32296
32624
|
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
32297
32625
|
type: Scalars['String']['output'];
|
|
32298
32626
|
userAccess?: Maybe<ConfluenceUserAccess>;
|
|
@@ -37792,7 +38120,9 @@ export type ContentAnalyticsUnreadComments = {
|
|
|
37792
38120
|
};
|
|
37793
38121
|
export type ContentAnalyticsViewers = {
|
|
37794
38122
|
__typename?: 'ContentAnalyticsViewers';
|
|
38123
|
+
agentCount?: Maybe<Scalars['Int']['output']>;
|
|
37795
38124
|
count: Scalars['Int']['output'];
|
|
38125
|
+
peopleCount?: Maybe<Scalars['Int']['output']>;
|
|
37796
38126
|
};
|
|
37797
38127
|
export type ContentAnalyticsViews = {
|
|
37798
38128
|
__typename?: 'ContentAnalyticsViews';
|
|
@@ -38293,6 +38623,7 @@ export type ConvoAiAnswerPartMessage = ConvoAiAgentMessage & {
|
|
|
38293
38623
|
artifact?: Maybe<ConvoAiMessageArtifact>;
|
|
38294
38624
|
audio?: Maybe<Scalars['String']['output']>;
|
|
38295
38625
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38626
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38296
38627
|
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
38297
38628
|
role: ConvoAiMessageAuthorRole;
|
|
38298
38629
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38337,6 +38668,7 @@ export type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
|
38337
38668
|
export type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
38338
38669
|
__typename?: 'ConvoAiErrorMessage';
|
|
38339
38670
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
38671
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38340
38672
|
messageTemplate: ConvoAiErrorMessageTemplate;
|
|
38341
38673
|
statusCode: Scalars['Int']['output'];
|
|
38342
38674
|
timeCreated: Scalars['DateTime']['output'];
|
|
@@ -38697,6 +39029,7 @@ export type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
|
38697
39029
|
agentSessionState?: Maybe<Scalars['String']['output']>;
|
|
38698
39030
|
contentIsMarkdown?: Maybe<Scalars['Boolean']['output']>;
|
|
38699
39031
|
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
39032
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
38700
39033
|
messageTemplate: Scalars['String']['output'];
|
|
38701
39034
|
timeCreated: Scalars['DateTime']['output'];
|
|
38702
39035
|
};
|
|
@@ -39591,6 +39924,7 @@ export type CreateAppDeploymentInput = {
|
|
|
39591
39924
|
appId: Scalars['ID']['input'];
|
|
39592
39925
|
artifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39593
39926
|
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
39927
|
+
combinedArtifactUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
39594
39928
|
environmentKey: Scalars['String']['input'];
|
|
39595
39929
|
hostedResourceUploadId?: InputMaybe<Scalars['ID']['input']>;
|
|
39596
39930
|
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -43939,6 +44273,25 @@ export type DevAiAutodevNextScanScheduleInput = {
|
|
|
43939
44273
|
timeOfDay?: InputMaybe<Scalars['String']['input']>;
|
|
43940
44274
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
43941
44275
|
};
|
|
44276
|
+
export type DevAiAutodevNextScanScheduleSlot = {
|
|
44277
|
+
__typename?: 'DevAiAutodevNextScanScheduleSlot';
|
|
44278
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44279
|
+
timeOfDay: Scalars['String']['output'];
|
|
44280
|
+
};
|
|
44281
|
+
export type DevAiAutodevNextScanScheduleSlotInput = {
|
|
44282
|
+
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
44283
|
+
timeOfDay: Scalars['String']['input'];
|
|
44284
|
+
};
|
|
44285
|
+
export type DevAiAutodevNextScanSchedules = {
|
|
44286
|
+
__typename?: 'DevAiAutodevNextScanSchedules';
|
|
44287
|
+
nextScanAt?: Maybe<Scalars['DateTime']['output']>;
|
|
44288
|
+
slots: Array<DevAiAutodevNextScanScheduleSlot>;
|
|
44289
|
+
timezone: Scalars['String']['output'];
|
|
44290
|
+
};
|
|
44291
|
+
export type DevAiAutodevNextScanSchedulesInput = {
|
|
44292
|
+
slots?: InputMaybe<Array<DevAiAutodevNextScanScheduleSlotInput>>;
|
|
44293
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
44294
|
+
};
|
|
43942
44295
|
export type DevAiAutodevNextScanTargetItemInput = {
|
|
43943
44296
|
repositoryAris: Array<Scalars['ID']['input']>;
|
|
43944
44297
|
standardId: Scalars['ID']['input'];
|
|
@@ -44143,6 +44496,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
44143
44496
|
pullRequestMessage?: Maybe<Scalars['String']['output']>;
|
|
44144
44497
|
pullRequestPrefix?: Maybe<Scalars['String']['output']>;
|
|
44145
44498
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
44499
|
+
scanScheduleConfiguration?: Maybe<DevAiAutodevNextScanSchedules>;
|
|
44146
44500
|
scanSchedules?: Maybe<Array<DevAiAutodevNextScanSchedule>>;
|
|
44147
44501
|
sessionPrompt?: Maybe<Scalars['String']['output']>;
|
|
44148
44502
|
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
@@ -44163,6 +44517,7 @@ export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
44163
44517
|
pullRequestMessage?: InputMaybe<Scalars['String']['input']>;
|
|
44164
44518
|
pullRequestPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
44165
44519
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
44520
|
+
scanScheduleConfiguration?: InputMaybe<DevAiAutodevNextScanSchedulesInput>;
|
|
44166
44521
|
scanSchedules?: InputMaybe<Array<DevAiAutodevNextScanScheduleInput>>;
|
|
44167
44522
|
sessionPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
44168
44523
|
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -44506,6 +44861,7 @@ export declare enum DevAiFlowSessionsStatus {
|
|
|
44506
44861
|
Pending = "PENDING"
|
|
44507
44862
|
}
|
|
44508
44863
|
export declare enum DevAiFlowUseCaseId {
|
|
44864
|
+
AgenticPlanning = "AGENTIC_PLANNING",
|
|
44509
44865
|
Automation = "AUTOMATION",
|
|
44510
44866
|
CodeStandards = "CODE_STANDARDS",
|
|
44511
44867
|
Jca = "JCA",
|
|
@@ -49955,6 +50311,7 @@ export type ExternalTeam = Node & {
|
|
|
49955
50311
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
49956
50312
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
49957
50313
|
id: Scalars['ID']['output'];
|
|
50314
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
49958
50315
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
49959
50316
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
49960
50317
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -49965,6 +50322,7 @@ export type ExternalTeam = Node & {
|
|
|
49965
50322
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
49966
50323
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
49967
50324
|
url?: Maybe<Scalars['String']['output']>;
|
|
50325
|
+
visibility?: Maybe<Scalars['String']['output']>;
|
|
49968
50326
|
};
|
|
49969
50327
|
export type ExternalTempMicrosoftTeamsMessage = Node & {
|
|
49970
50328
|
__typename?: 'ExternalTempMicrosoftTeamsMessage';
|
|
@@ -50173,6 +50531,7 @@ export type ExternalVideo = Node & {
|
|
|
50173
50531
|
provider?: Maybe<ExternalProvider>;
|
|
50174
50532
|
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
50175
50533
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
50534
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
50176
50535
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
50177
50536
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
50178
50537
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -51976,6 +52335,46 @@ export type GlanceUserInsights = {
|
|
|
51976
52335
|
type?: Maybe<Scalars['String']['output']>;
|
|
51977
52336
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
51978
52337
|
};
|
|
52338
|
+
export type GlobalAppEgress = {
|
|
52339
|
+
__typename?: 'GlobalAppEgress';
|
|
52340
|
+
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
52341
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
52342
|
+
inScopeEUD?: Maybe<Scalars['Boolean']['output']>;
|
|
52343
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52344
|
+
};
|
|
52345
|
+
export type GlobalAppExtension = {
|
|
52346
|
+
__typename?: 'GlobalAppExtension';
|
|
52347
|
+
allowsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
|
|
52348
|
+
appId: Scalars['String']['output'];
|
|
52349
|
+
appOwner: Scalars['String']['output'];
|
|
52350
|
+
appVersion: Scalars['String']['output'];
|
|
52351
|
+
appVersionId?: Maybe<Scalars['String']['output']>;
|
|
52352
|
+
definitionId: Scalars['String']['output'];
|
|
52353
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
52354
|
+
distributionStatus: Scalars['String']['output'];
|
|
52355
|
+
egress: Array<GlobalAppEgress>;
|
|
52356
|
+
environmentId: Scalars['String']['output'];
|
|
52357
|
+
environmentKey: Scalars['String']['output'];
|
|
52358
|
+
environmentType: Scalars['String']['output'];
|
|
52359
|
+
groupKey: Scalars['String']['output'];
|
|
52360
|
+
installationConfig?: Maybe<Array<GlobalAppInstallationConfig>>;
|
|
52361
|
+
installationTarget?: Maybe<Scalars['String']['output']>;
|
|
52362
|
+
isSystemApp?: Maybe<Scalars['Boolean']['output']>;
|
|
52363
|
+
isSystemUserProvisioned?: Maybe<Scalars['Boolean']['output']>;
|
|
52364
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
52365
|
+
licenseIds?: Maybe<Scalars['JSON']['output']>;
|
|
52366
|
+
manuallyAddedReadMeScope?: Maybe<Scalars['Boolean']['output']>;
|
|
52367
|
+
migrationKeys?: Maybe<Scalars['JSON']['output']>;
|
|
52368
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
52369
|
+
oauthClientId: Scalars['String']['output'];
|
|
52370
|
+
outboundAuthContainerId?: Maybe<Scalars['String']['output']>;
|
|
52371
|
+
principal: GlobalAppPrincipal;
|
|
52372
|
+
properties: Scalars['JSON']['output'];
|
|
52373
|
+
requiresLicense?: Maybe<Scalars['Boolean']['output']>;
|
|
52374
|
+
scopes: Array<Scalars['String']['output']>;
|
|
52375
|
+
securityPolicies: Array<GlobalAppSecurityPolicy>;
|
|
52376
|
+
versionId: Scalars['String']['output'];
|
|
52377
|
+
};
|
|
51979
52378
|
export type GlobalAppExtensionContextInput = {
|
|
51980
52379
|
appVersion: Scalars['String']['input'];
|
|
51981
52380
|
context: Scalars['JSON']['input'];
|
|
@@ -51983,12 +52382,36 @@ export type GlobalAppExtensionContextInput = {
|
|
|
51983
52382
|
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
51984
52383
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
51985
52384
|
};
|
|
52385
|
+
export type GlobalAppExtensionsResponse = {
|
|
52386
|
+
__typename?: 'GlobalAppExtensionsResponse';
|
|
52387
|
+
extensions?: Maybe<Array<GlobalAppExtension>>;
|
|
52388
|
+
};
|
|
51986
52389
|
export type GlobalAppForgeContextToken = {
|
|
51987
52390
|
__typename?: 'GlobalAppForgeContextToken';
|
|
51988
52391
|
expiresAt: Scalars['String']['output'];
|
|
51989
52392
|
extensionId: Scalars['ID']['output'];
|
|
51990
52393
|
jwt: Scalars['String']['output'];
|
|
51991
52394
|
};
|
|
52395
|
+
export type GlobalAppInstallationConfig = {
|
|
52396
|
+
__typename?: 'GlobalAppInstallationConfig';
|
|
52397
|
+
key: Scalars['String']['output'];
|
|
52398
|
+
value: Scalars['Boolean']['output'];
|
|
52399
|
+
};
|
|
52400
|
+
export type GlobalAppIsProductAdminResponse = {
|
|
52401
|
+
__typename?: 'GlobalAppIsProductAdminResponse';
|
|
52402
|
+
isAdmin: Scalars['Boolean']['output'];
|
|
52403
|
+
};
|
|
52404
|
+
export type GlobalAppPrincipal = {
|
|
52405
|
+
__typename?: 'GlobalAppPrincipal';
|
|
52406
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
52407
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
52408
|
+
mentionName?: Maybe<Scalars['String']['output']>;
|
|
52409
|
+
};
|
|
52410
|
+
export type GlobalAppSecurityPolicy = {
|
|
52411
|
+
__typename?: 'GlobalAppSecurityPolicy';
|
|
52412
|
+
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
52413
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52414
|
+
};
|
|
51992
52415
|
export type GlobalAppSignForgeContextTokensInput = {
|
|
51993
52416
|
contextIds: Array<Scalars['ID']['input']>;
|
|
51994
52417
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
@@ -52000,6 +52423,30 @@ export type GlobalAppSignForgeContextTokensResponse = Payload & {
|
|
|
52000
52423
|
success: Scalars['Boolean']['output'];
|
|
52001
52424
|
tokens: Array<GlobalAppForgeContextToken>;
|
|
52002
52425
|
};
|
|
52426
|
+
export type GlobalAppTmpPersonalAppExtensionContextInput = {
|
|
52427
|
+
appVersion: Scalars['String']['input'];
|
|
52428
|
+
context: Scalars['JSON']['input'];
|
|
52429
|
+
extensionId: Scalars['ID']['input'];
|
|
52430
|
+
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
52431
|
+
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
52432
|
+
};
|
|
52433
|
+
export type GlobalAppTmpPersonalAppForgeContextToken = {
|
|
52434
|
+
__typename?: 'GlobalAppTmpPersonalAppForgeContextToken';
|
|
52435
|
+
expiresAt: Scalars['String']['output'];
|
|
52436
|
+
extensionId: Scalars['ID']['output'];
|
|
52437
|
+
jwt: Scalars['String']['output'];
|
|
52438
|
+
};
|
|
52439
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensInput = {
|
|
52440
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
52441
|
+
extensionContexts: Array<GlobalAppTmpPersonalAppExtensionContextInput>;
|
|
52442
|
+
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52443
|
+
};
|
|
52444
|
+
export type GlobalAppTmpPersonalAppSignForgeContextTokensResponse = Payload & {
|
|
52445
|
+
__typename?: 'GlobalAppTmpPersonalAppSignForgeContextTokensResponse';
|
|
52446
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52447
|
+
success: Scalars['Boolean']['output'];
|
|
52448
|
+
tokens: Array<GlobalAppTmpPersonalAppForgeContextToken>;
|
|
52449
|
+
};
|
|
52003
52450
|
export type GlobalCardCreateAdditionalFields = {
|
|
52004
52451
|
__typename?: 'GlobalCardCreateAdditionalFields';
|
|
52005
52452
|
boardIssueListKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -53049,6 +53496,7 @@ export type GraphInferenceGetJiraEntityContextInput = {
|
|
|
53049
53496
|
nodeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53050
53497
|
recursionDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
53051
53498
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
53499
|
+
weightVersion?: InputMaybe<Scalars['String']['input']>;
|
|
53052
53500
|
};
|
|
53053
53501
|
export type GraphInferenceGetJiraEntityContextResponse = {
|
|
53054
53502
|
__typename?: 'GraphInferenceGetJiraEntityContextResponse';
|
|
@@ -53199,6 +53647,7 @@ export type GraphInferenceJiraEntityContextMeta = {
|
|
|
53199
53647
|
servedBy: Scalars['String']['output'];
|
|
53200
53648
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
53201
53649
|
warnings: Array<Scalars['String']['output']>;
|
|
53650
|
+
weightVersion: Scalars['String']['output'];
|
|
53202
53651
|
};
|
|
53203
53652
|
export type GraphInferenceJiraEntityContextProperty = {
|
|
53204
53653
|
__typename?: 'GraphInferenceJiraEntityContextProperty';
|
|
@@ -53302,6 +53751,7 @@ export type GraphIntegrationActionDirectoryItem = {
|
|
|
53302
53751
|
displayName: Scalars['String']['output'];
|
|
53303
53752
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53304
53753
|
id: Scalars['ID']['output'];
|
|
53754
|
+
inputSchema?: Maybe<Scalars['JSON']['output']>;
|
|
53305
53755
|
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
53306
53756
|
name: Scalars['String']['output'];
|
|
53307
53757
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
@@ -53384,6 +53834,7 @@ export type GraphIntegrationDirectoryFilterDimension = {
|
|
|
53384
53834
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
53385
53835
|
id: Scalars['ID']['output'];
|
|
53386
53836
|
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
53837
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
53387
53838
|
};
|
|
53388
53839
|
export type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
53389
53840
|
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
@@ -116019,6 +116470,7 @@ export type GrowthUnifiedProfileTrialHistoryResult = {
|
|
|
116019
116470
|
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
116020
116471
|
AutoUpgradeStorageLimit = "AUTO_UPGRADE_STORAGE_LIMIT",
|
|
116021
116472
|
AutoUpgradeUserLimit = "AUTO_UPGRADE_USER_LIMIT",
|
|
116473
|
+
CrossflowReverseTrial = "CROSSFLOW_REVERSE_TRIAL",
|
|
116022
116474
|
CrossflowUserLimit = "CROSSFLOW_USER_LIMIT",
|
|
116023
116475
|
EditionParity = "EDITION_PARITY",
|
|
116024
116476
|
EditionParityAutoProvisioning = "EDITION_PARITY_AUTO_PROVISIONING",
|
|
@@ -116511,6 +116963,11 @@ export type HelpCenterCreateTopicPayload = Payload & {
|
|
|
116511
116963
|
success: Scalars['Boolean']['output'];
|
|
116512
116964
|
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
116513
116965
|
};
|
|
116966
|
+
export type HelpCenterDeleteHubTranslationsInput = {
|
|
116967
|
+
helpCenterId: Scalars['ID']['input'];
|
|
116968
|
+
locale: Scalars['String']['input'];
|
|
116969
|
+
parentId: Scalars['ID']['input'];
|
|
116970
|
+
};
|
|
116514
116971
|
export type HelpCenterDeleteInput = {
|
|
116515
116972
|
helpCenterAri: Scalars['String']['input'];
|
|
116516
116973
|
};
|
|
@@ -116555,6 +117012,16 @@ export type HelpCenterHomePageTitleInput = {
|
|
|
116555
117012
|
default: Scalars['String']['input'];
|
|
116556
117013
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
116557
117014
|
};
|
|
117015
|
+
export type HelpCenterHubLayoutTranslations = {
|
|
117016
|
+
__typename?: 'HelpCenterHubLayoutTranslations';
|
|
117017
|
+
blocks: Array<HelpCenterHubTranslationBlock>;
|
|
117018
|
+
locale: Scalars['String']['output'];
|
|
117019
|
+
};
|
|
117020
|
+
export type HelpCenterHubLayoutTranslationsPayload = Payload & {
|
|
117021
|
+
__typename?: 'HelpCenterHubLayoutTranslationsPayload';
|
|
117022
|
+
errors?: Maybe<Array<MutationError>>;
|
|
117023
|
+
success: Scalars['Boolean']['output'];
|
|
117024
|
+
};
|
|
116558
117025
|
export type HelpCenterHubProductEntityResult = {
|
|
116559
117026
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
116560
117027
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
@@ -116565,9 +117032,35 @@ export type HelpCenterHubProductEntityResult = {
|
|
|
116565
117032
|
parentFilters?: Maybe<HelpCenterParentFilters>;
|
|
116566
117033
|
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
116567
117034
|
};
|
|
117035
|
+
export type HelpCenterHubTranslationBlock = {
|
|
117036
|
+
__typename?: 'HelpCenterHubTranslationBlock';
|
|
117037
|
+
fields: Array<HelpCenterHubTranslationField>;
|
|
117038
|
+
localId: Scalars['ID']['output'];
|
|
117039
|
+
};
|
|
117040
|
+
export type HelpCenterHubTranslationBlockInput = {
|
|
117041
|
+
extensionType: Scalars['String']['input'];
|
|
117042
|
+
fields: Array<HelpCenterHubTranslationFieldInput>;
|
|
117043
|
+
localId: Scalars['ID']['input'];
|
|
117044
|
+
};
|
|
117045
|
+
export type HelpCenterHubTranslationField = {
|
|
117046
|
+
__typename?: 'HelpCenterHubTranslationField';
|
|
117047
|
+
fieldPath: Scalars['String']['output'];
|
|
117048
|
+
value: Scalars['String']['output'];
|
|
117049
|
+
};
|
|
117050
|
+
export type HelpCenterHubTranslationFieldInput = {
|
|
117051
|
+
fieldPath: Scalars['String']['input'];
|
|
117052
|
+
value: Scalars['String']['input'];
|
|
117053
|
+
};
|
|
117054
|
+
export type HelpCenterHubTranslationsInput = {
|
|
117055
|
+
blocks: Array<HelpCenterHubTranslationBlockInput>;
|
|
117056
|
+
helpCenterId: Scalars['ID']['input'];
|
|
117057
|
+
locale: Scalars['String']['input'];
|
|
117058
|
+
parentId: Scalars['ID']['input'];
|
|
117059
|
+
};
|
|
116568
117060
|
export type HelpCenterLayoutAdf = {
|
|
116569
117061
|
__typename?: 'HelpCenterLayoutAdf';
|
|
116570
117062
|
content?: Maybe<HelpCenterLayoutAdfContentConnection>;
|
|
117063
|
+
translatableBlocksSchema: Array<HelpCenterTranslatableBlock>;
|
|
116571
117064
|
};
|
|
116572
117065
|
export type HelpCenterLayoutAdfContentArgs = {
|
|
116573
117066
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -116618,7 +117111,9 @@ export type HelpCenterMutationApi = {
|
|
|
116618
117111
|
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
116619
117112
|
deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
|
|
116620
117113
|
deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
|
|
117114
|
+
deleteLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116621
117115
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
117116
|
+
setLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
116622
117117
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
116623
117118
|
updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
|
|
116624
117119
|
updateHelpCenterPermissionSettings?: Maybe<HelpCenterPermissionSettingsPayload>;
|
|
@@ -116644,9 +117139,15 @@ export type HelpCenterMutationApiDeleteHelpCenterArgs = {
|
|
|
116644
117139
|
export type HelpCenterMutationApiDeleteHelpCenterPageArgs = {
|
|
116645
117140
|
input: HelpCenterPageDeleteInput;
|
|
116646
117141
|
};
|
|
117142
|
+
export type HelpCenterMutationApiDeleteLayoutTranslationsArgs = {
|
|
117143
|
+
input: HelpCenterDeleteHubTranslationsInput;
|
|
117144
|
+
};
|
|
116647
117145
|
export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
116648
117146
|
input: HelpCenterBulkDeleteTopicInput;
|
|
116649
117147
|
};
|
|
117148
|
+
export type HelpCenterMutationApiSetLayoutTranslationsArgs = {
|
|
117149
|
+
input: HelpCenterHubTranslationsInput;
|
|
117150
|
+
};
|
|
116650
117151
|
export type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
116651
117152
|
input: HelpCenterUpdateInput;
|
|
116652
117153
|
};
|
|
@@ -116720,6 +117221,7 @@ export type HelpCenterPage = Node & {
|
|
|
116720
117221
|
name?: Maybe<HelpCenterPageName>;
|
|
116721
117222
|
pageLayout?: Maybe<HelpCenterPageLayout>;
|
|
116722
117223
|
pageType?: Maybe<HelpCenterPageType>;
|
|
117224
|
+
rovoConfig?: Maybe<HelpCenterPageRovoConfig>;
|
|
116723
117225
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
116724
117226
|
};
|
|
116725
117227
|
export type HelpCenterPageCreateInput = {
|
|
@@ -116775,6 +117277,12 @@ export type HelpCenterPageQueryResultEdge = {
|
|
|
116775
117277
|
cursor: Scalars['String']['output'];
|
|
116776
117278
|
node?: Maybe<HelpCenterPageQueryResult>;
|
|
116777
117279
|
};
|
|
117280
|
+
export type HelpCenterPageRovoConfig = {
|
|
117281
|
+
__typename?: 'HelpCenterPageRovoConfig';
|
|
117282
|
+
agentId?: Maybe<Scalars['String']['output']>;
|
|
117283
|
+
isCustomAgentsAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
117284
|
+
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
117285
|
+
};
|
|
116778
117286
|
export declare enum HelpCenterPageType {
|
|
116779
117287
|
Custom = "CUSTOM",
|
|
116780
117288
|
CustomHome = "CUSTOM_HOME",
|
|
@@ -116977,6 +117485,7 @@ export type HelpCenterQueryApi = {
|
|
|
116977
117485
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
116978
117486
|
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
116979
117487
|
hubProductEntities: Array<HelpCenterHubProductEntityResult>;
|
|
117488
|
+
layoutTranslations: Array<HelpCenterHubLayoutTranslations>;
|
|
116980
117489
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
116981
117490
|
};
|
|
116982
117491
|
export type HelpCenterQueryApiCustomerExperiencesArgs = {
|
|
@@ -117052,6 +117561,10 @@ export type HelpCenterQueryApiHubProductEntitiesArgs = {
|
|
|
117052
117561
|
helpCenterAri: Scalars['ID']['input'];
|
|
117053
117562
|
inputs: Array<HelpCenterProductEntityRequestInput>;
|
|
117054
117563
|
};
|
|
117564
|
+
export type HelpCenterQueryApiLayoutTranslationsArgs = {
|
|
117565
|
+
helpCenterId: Scalars['ID']['input'];
|
|
117566
|
+
parentId: Scalars['ID']['input'];
|
|
117567
|
+
};
|
|
117055
117568
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
117056
117569
|
helpCenterAri: Scalars['ID']['input'];
|
|
117057
117570
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -117161,6 +117674,32 @@ export type HelpCenterTopicItemInput = {
|
|
|
117161
117674
|
ari: Scalars['ID']['input'];
|
|
117162
117675
|
};
|
|
117163
117676
|
export type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
117677
|
+
export type HelpCenterTranslatableBlock = {
|
|
117678
|
+
__typename?: 'HelpCenterTranslatableBlock';
|
|
117679
|
+
blockType: HelpCenterTranslatableBlockType;
|
|
117680
|
+
extensionType: Scalars['String']['output'];
|
|
117681
|
+
fields: Array<HelpCenterTranslatableField>;
|
|
117682
|
+
};
|
|
117683
|
+
export declare enum HelpCenterTranslatableBlockType {
|
|
117684
|
+
Carousel = "CAROUSEL",
|
|
117685
|
+
JsmHelp = "JSM_HELP",
|
|
117686
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
117687
|
+
LinksMenu = "LINKS_MENU",
|
|
117688
|
+
LinkCards = "LINK_CARDS",
|
|
117689
|
+
PageTopper = "PAGE_TOPPER",
|
|
117690
|
+
Spotlight = "SPOTLIGHT"
|
|
117691
|
+
}
|
|
117692
|
+
export type HelpCenterTranslatableField = {
|
|
117693
|
+
__typename?: 'HelpCenterTranslatableField';
|
|
117694
|
+
arrayKey?: Maybe<Scalars['String']['output']>;
|
|
117695
|
+
idField?: Maybe<Scalars['String']['output']>;
|
|
117696
|
+
kind: HelpCenterTranslatableFieldKind;
|
|
117697
|
+
path: Scalars['String']['output'];
|
|
117698
|
+
};
|
|
117699
|
+
export declare enum HelpCenterTranslatableFieldKind {
|
|
117700
|
+
ArrayItem = "ARRAY_ITEM",
|
|
117701
|
+
Scalar = "SCALAR"
|
|
117702
|
+
}
|
|
117164
117703
|
export type HelpCenterTranslation = {
|
|
117165
117704
|
__typename?: 'HelpCenterTranslation';
|
|
117166
117705
|
locale: Scalars['String']['output'];
|
|
@@ -118521,10 +119060,9 @@ export type HydratingJiraIssueEdge = {
|
|
|
118521
119060
|
};
|
|
118522
119061
|
export type HypothesisIndicator = {
|
|
118523
119062
|
__typename?: 'HypothesisIndicator';
|
|
118524
|
-
hypothesisId?: Maybe<Scalars['String']['output']>;
|
|
118525
119063
|
hypothesisSummary?: Maybe<Scalars['String']['output']>;
|
|
118526
119064
|
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
118527
|
-
|
|
119065
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
118528
119066
|
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
118529
119067
|
};
|
|
118530
119068
|
export type Icon = {
|
|
@@ -120061,6 +120599,7 @@ export declare enum JiraAgentSessionInvocationType {
|
|
|
120061
120599
|
Unknown = "UNKNOWN"
|
|
120062
120600
|
}
|
|
120063
120601
|
export declare enum JiraAgentSessionPreExecutionStep {
|
|
120602
|
+
AgentReadiness = "AGENT_READINESS",
|
|
120064
120603
|
Planning = "PLANNING"
|
|
120065
120604
|
}
|
|
120066
120605
|
export declare enum JiraAgentSessionState {
|
|
@@ -120106,6 +120645,11 @@ export type JiraAgentSessionsFieldAgentSessionsArgs = {
|
|
|
120106
120645
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120107
120646
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120108
120647
|
};
|
|
120648
|
+
export type JiraAgentSessionsScopeInput = {
|
|
120649
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
120650
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
120651
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
120652
|
+
};
|
|
120109
120653
|
export declare enum JiraAgentStateCategory {
|
|
120110
120654
|
Finished = "FINISHED",
|
|
120111
120655
|
NeedsInput = "NEEDS_INPUT",
|
|
@@ -120210,17 +120754,6 @@ export type JiraAggregatedTimelineFieldMissingAggregatedDateTypeArgs = {
|
|
|
120210
120754
|
input?: InputMaybe<JiraFieldAggregationQueryInput>;
|
|
120211
120755
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
120212
120756
|
};
|
|
120213
|
-
export declare enum JiraAiAgentConversationState {
|
|
120214
|
-
ArtefactReady = "ARTEFACT_READY",
|
|
120215
|
-
AuthRequired = "AUTH_REQUIRED",
|
|
120216
|
-
Cancelled = "CANCELLED",
|
|
120217
|
-
Completed = "COMPLETED",
|
|
120218
|
-
Failed = "FAILED",
|
|
120219
|
-
InputRequired = "INPUT_REQUIRED",
|
|
120220
|
-
Rejected = "REJECTED",
|
|
120221
|
-
Unknown = "UNKNOWN",
|
|
120222
|
-
Working = "WORKING"
|
|
120223
|
-
}
|
|
120224
120757
|
export type JiraAiAgentSession = {
|
|
120225
120758
|
__typename?: 'JiraAiAgentSession';
|
|
120226
120759
|
agent?: Maybe<User>;
|
|
@@ -120245,11 +120778,6 @@ export type JiraAiAgentSessionEnrichmentInput = {
|
|
|
120245
120778
|
conversationId: Scalars['String']['input'];
|
|
120246
120779
|
sortKey?: InputMaybe<Scalars['String']['input']>;
|
|
120247
120780
|
};
|
|
120248
|
-
export type JiraAiAgentSessionStatus = {
|
|
120249
|
-
__typename?: 'JiraAiAgentSessionStatus';
|
|
120250
|
-
conversationId: Scalars['ID']['output'];
|
|
120251
|
-
state: JiraAiAgentConversationState;
|
|
120252
|
-
};
|
|
120253
120781
|
export declare enum JiraAiContextPanel {
|
|
120254
120782
|
None = "NONE",
|
|
120255
120783
|
ResolutionPlan = "RESOLUTION_PLAN",
|
|
@@ -122305,6 +122833,7 @@ export type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
|
122305
122833
|
};
|
|
122306
122834
|
export type JiraBoardViewSprintsArgs = {
|
|
122307
122835
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122836
|
+
autoManaged?: InputMaybe<JiraAutoManagedSprintSetting>;
|
|
122308
122837
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122309
122838
|
};
|
|
122310
122839
|
export type JiraBoardViewUnmappedStatusesArgs = {
|
|
@@ -122388,6 +122917,7 @@ export type JiraBoardViewCellContextField = {
|
|
|
122388
122917
|
__typename?: 'JiraBoardViewCellContextField';
|
|
122389
122918
|
field?: Maybe<JiraField>;
|
|
122390
122919
|
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
122920
|
+
fieldValues?: Maybe<JiraBoardViewContextFieldValue>;
|
|
122391
122921
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
122392
122922
|
};
|
|
122393
122923
|
export type JiraBoardViewCellContextFieldIssueTypesArgs = {
|
|
@@ -122436,6 +122966,7 @@ export type JiraBoardViewColumnLayoutCellsArgs = {
|
|
|
122436
122966
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122437
122967
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
122438
122968
|
};
|
|
122969
|
+
export type JiraBoardViewContextFieldValue = JiraBoardViewMultiFieldValue | JiraBoardViewSingleFieldValue;
|
|
122439
122970
|
export type JiraBoardViewCustomSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
122440
122971
|
__typename?: 'JiraBoardViewCustomSwimlane';
|
|
122441
122972
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
@@ -122528,6 +123059,10 @@ export type JiraBoardViewIssuePositions = {
|
|
|
122528
123059
|
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
122529
123060
|
};
|
|
122530
123061
|
export type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
123062
|
+
export type JiraBoardViewMultiFieldValue = {
|
|
123063
|
+
__typename?: 'JiraBoardViewMultiFieldValue';
|
|
123064
|
+
values?: Maybe<Array<JiraJqlFieldValue>>;
|
|
123065
|
+
};
|
|
122531
123066
|
export type JiraBoardViewPriorityColumn = JiraBoardViewColumn & Node & {
|
|
122532
123067
|
__typename?: 'JiraBoardViewPriorityColumn';
|
|
122533
123068
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -122580,6 +123115,10 @@ export type JiraBoardViewSettingsSwimlaneCollapsedEdge = {
|
|
|
122580
123115
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
122581
123116
|
node?: Maybe<JiraBoardViewSettingsSwimlaneCollapsed>;
|
|
122582
123117
|
};
|
|
123118
|
+
export type JiraBoardViewSingleFieldValue = {
|
|
123119
|
+
__typename?: 'JiraBoardViewSingleFieldValue';
|
|
123120
|
+
value?: Maybe<JiraJqlFieldValue>;
|
|
123121
|
+
};
|
|
122583
123122
|
export type JiraBoardViewStatus = {
|
|
122584
123123
|
__typename?: 'JiraBoardViewStatus';
|
|
122585
123124
|
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -128867,11 +129406,9 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
128867
129406
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
128868
129407
|
aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
|
|
128869
129408
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
128870
|
-
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
128871
129409
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
128872
129410
|
archivedBy?: Maybe<User>;
|
|
128873
129411
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
128874
|
-
assignedAgentSessionStatus?: Maybe<JiraAiAgentSessionStatus>;
|
|
128875
129412
|
assignee?: Maybe<User>;
|
|
128876
129413
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
128877
129414
|
atlassianProject?: Maybe<JiraTownsquareProject>;
|
|
@@ -129081,11 +129618,6 @@ export type JiraIssueAllActivitiesArgs = {
|
|
|
129081
129618
|
first: Scalars['Int']['input'];
|
|
129082
129619
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
129083
129620
|
};
|
|
129084
|
-
export type JiraIssueAllAgentSessionsArgs = {
|
|
129085
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
129086
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129087
|
-
sort?: InputMaybe<Scalars['String']['input']>;
|
|
129088
|
-
};
|
|
129089
129621
|
export type JiraIssueApprovalActivitiesArgs = {
|
|
129090
129622
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129091
129623
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130854,6 +131386,7 @@ export type JiraIssueNextActionSuggestions = {
|
|
|
130854
131386
|
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
130855
131387
|
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
130856
131388
|
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
131389
|
+
triageAgentSuggestions?: Maybe<JiraTriageAgentSuggestions>;
|
|
130857
131390
|
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
130858
131391
|
};
|
|
130859
131392
|
export type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
@@ -133988,6 +134521,7 @@ export type JiraMutation = {
|
|
|
133988
134521
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
133989
134522
|
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
133990
134523
|
jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
|
|
134524
|
+
jira_updateProjectPolicyAssociatedProjects?: Maybe<JiraUpdateProjectPolicyAssociatedProjectsPayload>;
|
|
133991
134525
|
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
133992
134526
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
133993
134527
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
@@ -134444,6 +134978,9 @@ export type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
|
134444
134978
|
export type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
|
|
134445
134979
|
input: JiraSetProjectPolicyAssociatedProjectsInput;
|
|
134446
134980
|
};
|
|
134981
|
+
export type JiraMutationJira_UpdateProjectPolicyAssociatedProjectsArgs = {
|
|
134982
|
+
input: JiraUpdateProjectPolicyAssociatedProjectsInput;
|
|
134983
|
+
};
|
|
134447
134984
|
export type JiraMutationJwmAssociateFieldArgs = {
|
|
134448
134985
|
cloudId: Scalars['ID']['input'];
|
|
134449
134986
|
input: JiraWorkManagementAssociateFieldInput;
|
|
@@ -135100,6 +135637,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
135100
135637
|
Reports = "REPORTS",
|
|
135101
135638
|
Requests = "REQUESTS",
|
|
135102
135639
|
Security = "SECURITY",
|
|
135640
|
+
Sessions = "SESSIONS",
|
|
135103
135641
|
Shortcuts = "SHORTCUTS",
|
|
135104
135642
|
Summary = "SUMMARY",
|
|
135105
135643
|
Teams = "TEAMS",
|
|
@@ -135127,7 +135665,8 @@ export declare enum JiraNextActionContentType {
|
|
|
135127
135665
|
export declare enum JiraNextActionGroup {
|
|
135128
135666
|
AiFeatures = "AI_FEATURES",
|
|
135129
135667
|
LoomUpdates = "LOOM_UPDATES",
|
|
135130
|
-
Sdlc = "SDLC"
|
|
135668
|
+
Sdlc = "SDLC",
|
|
135669
|
+
TriageAgent = "TRIAGE_AGENT"
|
|
135131
135670
|
}
|
|
135132
135671
|
export declare enum JiraNextActionInteractionType {
|
|
135133
135672
|
ActionNudge = "ACTION_NUDGE",
|
|
@@ -136060,6 +136599,26 @@ export type JiraPermissionGrantHolder = {
|
|
|
136060
136599
|
grants?: Maybe<Array<JiraPermissionGrants>>;
|
|
136061
136600
|
permission: JiraProjectPermission;
|
|
136062
136601
|
};
|
|
136602
|
+
export type JiraPermissionGrantUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
136603
|
+
__typename?: 'JiraPermissionGrantUsageMetric';
|
|
136604
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
136605
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
136606
|
+
id: Scalars['ID']['output'];
|
|
136607
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
136608
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
136609
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
136610
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
136611
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
136612
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
136613
|
+
};
|
|
136614
|
+
export type JiraPermissionGrantUsageMetricValuesArgs = {
|
|
136615
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136616
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
136617
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136618
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136619
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136620
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
136621
|
+
};
|
|
136063
136622
|
export type JiraPermissionGrantValue = {
|
|
136064
136623
|
__typename?: 'JiraPermissionGrantValue';
|
|
136065
136624
|
id: Scalars['ID']['output'];
|
|
@@ -136815,6 +137374,7 @@ export type JiraProject = Node & {
|
|
|
136815
137374
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
136816
137375
|
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
136817
137376
|
name: Scalars['String']['output'];
|
|
137377
|
+
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
136818
137378
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
136819
137379
|
opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
|
|
136820
137380
|
optionsPerFieldLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136903,6 +137463,9 @@ export type JiraProjectBoardsArgs = {
|
|
|
136903
137463
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136904
137464
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136905
137465
|
};
|
|
137466
|
+
export type JiraProjectCapabilitiesArgs = {
|
|
137467
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
137468
|
+
};
|
|
136906
137469
|
export type JiraProjectComponentsArgs = {
|
|
136907
137470
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
136908
137471
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136985,6 +137548,13 @@ export type JiraProjectLinkedSecurityVulnerabilitiesByProjectArgs = {
|
|
|
136985
137548
|
filter?: InputMaybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
136986
137549
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136987
137550
|
};
|
|
137551
|
+
export type JiraProjectNavigationItemsArgs = {
|
|
137552
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
137553
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
137554
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
137555
|
+
itemTypeKey?: InputMaybe<JiraNavigationItemTypeKey>;
|
|
137556
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
137557
|
+
};
|
|
136988
137558
|
export type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
136989
137559
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
136990
137560
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -137655,6 +138225,7 @@ export type JiraProjectPolicyRuleViolation = {
|
|
|
137655
138225
|
message?: Maybe<Scalars['String']['output']>;
|
|
137656
138226
|
policy?: Maybe<JiraProjectPolicy>;
|
|
137657
138227
|
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
138228
|
+
ruleTypeId?: Maybe<Scalars['String']['output']>;
|
|
137658
138229
|
};
|
|
137659
138230
|
export type JiraProjectPolicyRuleViolationConnection = HasPageInfo & HasTotal & {
|
|
137660
138231
|
__typename?: 'JiraProjectPolicyRuleViolationConnection';
|
|
@@ -138027,6 +138598,7 @@ export type JiraQuery = {
|
|
|
138027
138598
|
activeBackgroundDetails?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
138028
138599
|
advancedRoadmapsNavigation?: Maybe<JiraAdvancedRoadmapsNavigation>;
|
|
138029
138600
|
agentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
138601
|
+
agentSessionsByScope?: Maybe<AgentSessionAssociationConnection>;
|
|
138030
138602
|
aiAgentSessionEnrichment?: Maybe<JiraAiAgentSession>;
|
|
138031
138603
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
138032
138604
|
allJiraJourneyConfigurations?: Maybe<JiraJourneyConfigurationConnection>;
|
|
@@ -138053,6 +138625,7 @@ export type JiraQuery = {
|
|
|
138053
138625
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
138054
138626
|
bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
|
|
138055
138627
|
canPerform?: Maybe<Scalars['Boolean']['output']>;
|
|
138628
|
+
caseManagementRequestTypeCreationOptions?: Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOptionConnection>;
|
|
138056
138629
|
cfoAnalytics?: Maybe<JiraCfoAnalyticsResult>;
|
|
138057
138630
|
cfoConfigs?: Maybe<JiraCfoConfigsResult>;
|
|
138058
138631
|
cfoInsights?: Maybe<JiraCfoMetricInsightConnection>;
|
|
@@ -138116,6 +138689,7 @@ export type JiraQuery = {
|
|
|
138116
138689
|
groupCommentVisibilities?: Maybe<JiraGroupConnection>;
|
|
138117
138690
|
groupsForIssues?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
138118
138691
|
hasGlobalPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138692
|
+
hasJsmAdminAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
138119
138693
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
138120
138694
|
hasSystemConfluenceApplicationLink?: Maybe<Scalars['Boolean']['output']>;
|
|
138121
138695
|
hipaaCompliance?: Maybe<JiraHipaaComplianceResponse>;
|
|
@@ -138181,6 +138755,7 @@ export type JiraQuery = {
|
|
|
138181
138755
|
jiraVersionStageInfoByIds?: Maybe<Array<Maybe<JiraVersionStageInfo>>>;
|
|
138182
138756
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
138183
138757
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
138758
|
+
jira_recommendedAgentsV2?: Maybe<JiraActorConnection>;
|
|
138184
138759
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
138185
138760
|
jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
|
|
138186
138761
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -138263,6 +138838,7 @@ export type JiraQuery = {
|
|
|
138263
138838
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
138264
138839
|
resourceUsageMetricsV2?: Maybe<JiraResourceUsageMetricConnectionV2>;
|
|
138265
138840
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
138841
|
+
rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
138266
138842
|
savedFilters?: Maybe<JiraFilterConnection>;
|
|
138267
138843
|
screenById?: Maybe<Array<Maybe<JiraScreen>>>;
|
|
138268
138844
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -138308,6 +138884,16 @@ export type JiraQueryAgentSessionsArgs = {
|
|
|
138308
138884
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138309
138885
|
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
138310
138886
|
};
|
|
138887
|
+
export type JiraQueryAgentSessionsByScopeArgs = {
|
|
138888
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138889
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
138890
|
+
cloudId: Scalars['ID']['input'];
|
|
138891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138892
|
+
isDeleted: Scalars['Boolean']['input'];
|
|
138893
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
138894
|
+
scope: JiraAgentSessionsScopeInput;
|
|
138895
|
+
state?: InputMaybe<JiraAgentSessionStateCategory>;
|
|
138896
|
+
};
|
|
138311
138897
|
export type JiraQueryAiAgentSessionEnrichmentArgs = {
|
|
138312
138898
|
input: JiraAiAgentSessionEnrichmentInput;
|
|
138313
138899
|
};
|
|
@@ -138441,6 +139027,12 @@ export type JiraQueryCanPerformArgs = {
|
|
|
138441
139027
|
cloudId: Scalars['ID']['input'];
|
|
138442
139028
|
type: JiraActionType;
|
|
138443
139029
|
};
|
|
139030
|
+
export type JiraQueryCaseManagementRequestTypeCreationOptionsArgs = {
|
|
139031
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
139032
|
+
cloudId: Scalars['ID']['input'];
|
|
139033
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139034
|
+
projectId: Scalars['ID']['input'];
|
|
139035
|
+
};
|
|
138444
139036
|
export type JiraQueryCfoAnalyticsArgs = {
|
|
138445
139037
|
cloudId: Scalars['ID']['input'];
|
|
138446
139038
|
dimensions?: InputMaybe<Array<JiraCfoDimensionInput>>;
|
|
@@ -138782,6 +139374,9 @@ export type JiraQueryHasGlobalPermissionArgs = {
|
|
|
138782
139374
|
cloudId: Scalars['ID']['input'];
|
|
138783
139375
|
key: JiraGlobalPermissionType;
|
|
138784
139376
|
};
|
|
139377
|
+
export type JiraQueryHasJsmAdminAccessArgs = {
|
|
139378
|
+
cloudId: Scalars['ID']['input'];
|
|
139379
|
+
};
|
|
138785
139380
|
export type JiraQueryHasProjectPermissionArgs = {
|
|
138786
139381
|
cloudId: Scalars['ID']['input'];
|
|
138787
139382
|
permission: JiraProjectPermissionType;
|
|
@@ -139095,6 +139690,15 @@ export type JiraQueryJira_RecommendedAgentsArgs = {
|
|
|
139095
139690
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
139096
139691
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139097
139692
|
};
|
|
139693
|
+
export type JiraQueryJira_RecommendedAgentsV2Args = {
|
|
139694
|
+
assignableOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139695
|
+
cloudId: Scalars['ID']['input'];
|
|
139696
|
+
contextAri: Scalars['ID']['input'];
|
|
139697
|
+
contextSurface?: InputMaybe<Scalars['String']['input']>;
|
|
139698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
139699
|
+
includeSemanticallyAvailable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
139700
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
139701
|
+
};
|
|
139098
139702
|
export type JiraQueryJira_SemanticAgentRecommenderArgs = {
|
|
139099
139703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139100
139704
|
cloudId: Scalars['ID']['input'];
|
|
@@ -139506,6 +140110,9 @@ export type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
139506
140110
|
category: JiraRecommendationCategory;
|
|
139507
140111
|
cloudId: Scalars['ID']['input'];
|
|
139508
140112
|
};
|
|
140113
|
+
export type JiraQueryRovoEnablementStatusArgs = {
|
|
140114
|
+
cloudId: Scalars['ID']['input'];
|
|
140115
|
+
};
|
|
139509
140116
|
export type JiraQuerySavedFiltersArgs = {
|
|
139510
140117
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139511
140118
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -139732,8 +140339,10 @@ export type JiraRecentItemsFilter = {
|
|
|
139732
140339
|
export declare enum JiraRecommendationCategory {
|
|
139733
140340
|
CustomField = "CUSTOM_FIELD",
|
|
139734
140341
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
140342
|
+
PermissionGrantScheme = "PERMISSION_GRANT_SCHEME",
|
|
139735
140343
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
139736
|
-
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
140344
|
+
ProjectRoleActor = "PROJECT_ROLE_ACTOR",
|
|
140345
|
+
WorkflowScheme = "WORKFLOW_SCHEME"
|
|
139737
140346
|
}
|
|
139738
140347
|
export type JiraRecommendedAction = {
|
|
139739
140348
|
__typename?: 'JiraRecommendedAction';
|
|
@@ -139881,7 +140490,6 @@ export type JiraReleaseHistoryItem = {
|
|
|
139881
140490
|
eventId?: Maybe<Scalars['String']['output']>;
|
|
139882
140491
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
139883
140492
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
139884
|
-
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
139885
140493
|
i18nFieldName?: Maybe<Scalars['String']['output']>;
|
|
139886
140494
|
id: Scalars['ID']['output'];
|
|
139887
140495
|
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -141038,6 +141646,7 @@ export type JiraRovoEnablementStatus = {
|
|
|
141038
141646
|
export declare enum JiraRovoWithAiDisabledReason {
|
|
141039
141647
|
NoRovoEntitlement = "NO_ROVO_ENTITLEMENT",
|
|
141040
141648
|
NoUserContextAvailable = "NO_USER_CONTEXT_AVAILABLE",
|
|
141649
|
+
NoWritePermsForRovo = "NO_WRITE_PERMS_FOR_ROVO",
|
|
141041
141650
|
RbacAccessDenied = "RBAC_ACCESS_DENIED",
|
|
141042
141651
|
RovoDisabledInAllJiraProducts = "ROVO_DISABLED_IN_ALL_JIRA_PRODUCTS"
|
|
141043
141652
|
}
|
|
@@ -141615,6 +142224,27 @@ export type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
|
141615
142224
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
141616
142225
|
projectId: Scalars['ID']['input'];
|
|
141617
142226
|
};
|
|
142227
|
+
export type JiraServiceManagementCaseManagementRequestTypeCreationOption = {
|
|
142228
|
+
__typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOption';
|
|
142229
|
+
existingRequestType?: Maybe<JiraServiceManagementRequestType>;
|
|
142230
|
+
key: Scalars['String']['output'];
|
|
142231
|
+
name: Scalars['String']['output'];
|
|
142232
|
+
requestTypeIconUrl?: Maybe<Scalars['String']['output']>;
|
|
142233
|
+
templateId: Scalars['ID']['output'];
|
|
142234
|
+
};
|
|
142235
|
+
export type JiraServiceManagementCaseManagementRequestTypeCreationOptionConnection = {
|
|
142236
|
+
__typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOptionConnection';
|
|
142237
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOptionEdge>>>;
|
|
142238
|
+
errors?: Maybe<Array<QueryError>>;
|
|
142239
|
+
nodes: Array<JiraServiceManagementCaseManagementRequestTypeCreationOption>;
|
|
142240
|
+
pageInfo: PageInfo;
|
|
142241
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142242
|
+
};
|
|
142243
|
+
export type JiraServiceManagementCaseManagementRequestTypeCreationOptionEdge = {
|
|
142244
|
+
__typename?: 'JiraServiceManagementCaseManagementRequestTypeCreationOptionEdge';
|
|
142245
|
+
cursor: Scalars['String']['output'];
|
|
142246
|
+
node?: Maybe<JiraServiceManagementCaseManagementRequestTypeCreationOption>;
|
|
142247
|
+
};
|
|
141618
142248
|
export type JiraServiceManagementChannelSource = {
|
|
141619
142249
|
__typename?: 'JiraServiceManagementChannelSource';
|
|
141620
142250
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -145121,6 +145751,8 @@ export type JiraTimelineIssueSearchCustomInput = {
|
|
|
145121
145751
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
145122
145752
|
boardId: Scalars['ID']['input'];
|
|
145123
145753
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145754
|
+
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145755
|
+
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
145124
145756
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
145125
145757
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145126
145758
|
};
|
|
@@ -145425,6 +146057,58 @@ export type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
145425
146057
|
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
145426
146058
|
success: Scalars['Boolean']['output'];
|
|
145427
146059
|
};
|
|
146060
|
+
export type JiraTriageAgentSuggestionConnection = {
|
|
146061
|
+
__typename?: 'JiraTriageAgentSuggestionConnection';
|
|
146062
|
+
edges?: Maybe<Array<Maybe<JiraTriageAgentSuggestionEdge>>>;
|
|
146063
|
+
pageInfo: PageInfo;
|
|
146064
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
146065
|
+
};
|
|
146066
|
+
export type JiraTriageAgentSuggestionEdge = {
|
|
146067
|
+
__typename?: 'JiraTriageAgentSuggestionEdge';
|
|
146068
|
+
cursor: Scalars['String']['output'];
|
|
146069
|
+
node?: Maybe<JiraTriageAgentSuggestionItem>;
|
|
146070
|
+
};
|
|
146071
|
+
export type JiraTriageAgentSuggestionItem = {
|
|
146072
|
+
__typename?: 'JiraTriageAgentSuggestionItem';
|
|
146073
|
+
actionKey?: Maybe<Scalars['String']['output']>;
|
|
146074
|
+
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
146075
|
+
experienceId?: Maybe<Scalars['String']['output']>;
|
|
146076
|
+
invocationId?: Maybe<Scalars['ID']['output']>;
|
|
146077
|
+
messageId?: Maybe<Scalars['ID']['output']>;
|
|
146078
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
146079
|
+
recipientAgentNamedId?: Maybe<Scalars['String']['output']>;
|
|
146080
|
+
updates?: Maybe<Array<JiraTriageAgentWorkItemUpdate>>;
|
|
146081
|
+
};
|
|
146082
|
+
export type JiraTriageAgentSuggestions = JiraBaseNextActionsEntity & {
|
|
146083
|
+
__typename?: 'JiraTriageAgentSuggestions';
|
|
146084
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
146085
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
146086
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
146087
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
146088
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
146089
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
146090
|
+
items?: Maybe<JiraTriageAgentSuggestionConnection>;
|
|
146091
|
+
queryError?: Maybe<QueryError>;
|
|
146092
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
146093
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
146094
|
+
};
|
|
146095
|
+
export type JiraTriageAgentSuggestionsItemsArgs = {
|
|
146096
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
146097
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
146098
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
146099
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
146100
|
+
};
|
|
146101
|
+
export type JiraTriageAgentWorkItemUpdate = {
|
|
146102
|
+
__typename?: 'JiraTriageAgentWorkItemUpdate';
|
|
146103
|
+
fields?: Maybe<Array<JiraTriageAgentWorkItemUpdateField>>;
|
|
146104
|
+
issueIdOrKey?: Maybe<Scalars['String']['output']>;
|
|
146105
|
+
};
|
|
146106
|
+
export type JiraTriageAgentWorkItemUpdateField = {
|
|
146107
|
+
__typename?: 'JiraTriageAgentWorkItemUpdateField';
|
|
146108
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
146109
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
146110
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
146111
|
+
};
|
|
145428
146112
|
export type JiraUiExposedError = {
|
|
145429
146113
|
__typename?: 'JiraUIExposedError';
|
|
145430
146114
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -145532,6 +146216,7 @@ export type JiraUpdateBackgroundInput = {
|
|
|
145532
146216
|
export type JiraUpdateBoardViewStatusColumnAgentInput = {
|
|
145533
146217
|
agentAccountId: Scalars['ID']['input'];
|
|
145534
146218
|
agentPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
146219
|
+
agentRulesToUpdate?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentRuleInput>>;
|
|
145535
146220
|
columnId: Scalars['ID']['input'];
|
|
145536
146221
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
145537
146222
|
transitionsToAdd?: InputMaybe<Array<JiraUpdateBoardViewStatusColumnAgentTransitionInput>>;
|
|
@@ -145544,7 +146229,12 @@ export type JiraUpdateBoardViewStatusColumnAgentPayload = Payload & {
|
|
|
145544
146229
|
errors?: Maybe<Array<MutationError>>;
|
|
145545
146230
|
success: Scalars['Boolean']['output'];
|
|
145546
146231
|
};
|
|
146232
|
+
export type JiraUpdateBoardViewStatusColumnAgentRuleInput = {
|
|
146233
|
+
ruleId: Scalars['ID']['input'];
|
|
146234
|
+
workflowId: Scalars['ID']['input'];
|
|
146235
|
+
};
|
|
145547
146236
|
export type JiraUpdateBoardViewStatusColumnAgentTransitionInput = {
|
|
146237
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
145548
146238
|
transitionId: Scalars['ID']['input'];
|
|
145549
146239
|
workflowId: Scalars['ID']['input'];
|
|
145550
146240
|
};
|
|
@@ -145991,6 +146681,17 @@ export type JiraUpdateProjectNotificationPreferencesPayload = Payload & {
|
|
|
145991
146681
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
145992
146682
|
success: Scalars['Boolean']['output'];
|
|
145993
146683
|
};
|
|
146684
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsInput = {
|
|
146685
|
+
addProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146686
|
+
policyId: Scalars['ID']['input'];
|
|
146687
|
+
removeProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146688
|
+
};
|
|
146689
|
+
export type JiraUpdateProjectPolicyAssociatedProjectsPayload = Payload & {
|
|
146690
|
+
__typename?: 'JiraUpdateProjectPolicyAssociatedProjectsPayload';
|
|
146691
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146692
|
+
projectPolicy?: Maybe<JiraProjectPolicy>;
|
|
146693
|
+
success: Scalars['Boolean']['output'];
|
|
146694
|
+
};
|
|
145994
146695
|
export type JiraUpdateRadioSelectFieldInput = {
|
|
145995
146696
|
id: Scalars['ID']['input'];
|
|
145996
146697
|
operation: JiraRadioSelectFieldOperationInput;
|
|
@@ -147797,6 +148498,26 @@ export type JiraWorkTypeUsageMetricValuesArgs = {
|
|
|
147797
148498
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
147798
148499
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
147799
148500
|
};
|
|
148501
|
+
export type JiraWorkflowResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
148502
|
+
__typename?: 'JiraWorkflowResourceUsageMetric';
|
|
148503
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
148504
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
148505
|
+
id: Scalars['ID']['output'];
|
|
148506
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
148507
|
+
schemesOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
148508
|
+
schemesReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
148509
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
148510
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
148511
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
148512
|
+
};
|
|
148513
|
+
export type JiraWorkflowResourceUsageMetricValuesArgs = {
|
|
148514
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148515
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
148516
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148517
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148518
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
148519
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
148520
|
+
};
|
|
147800
148521
|
export type JiraWorklog = Node & {
|
|
147801
148522
|
__typename?: 'JiraWorklog';
|
|
147802
148523
|
author?: Maybe<User>;
|
|
@@ -150075,6 +150796,26 @@ export declare enum JsmTelemetryDomainErrorCode {
|
|
|
150075
150796
|
UnsupportedQuery = "UNSUPPORTED_QUERY",
|
|
150076
150797
|
ValidationError = "VALIDATION_ERROR"
|
|
150077
150798
|
}
|
|
150799
|
+
export type JsmTelemetryIncidentContextResponse = {
|
|
150800
|
+
__typename?: 'JsmTelemetryIncidentContextResponse';
|
|
150801
|
+
affectedServices: Array<Scalars['String']['output']>;
|
|
150802
|
+
alertFiredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
150803
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
150804
|
+
incidentId: Scalars['String']['output'];
|
|
150805
|
+
labels: Array<Scalars['String']['output']>;
|
|
150806
|
+
severity?: Maybe<Scalars['String']['output']>;
|
|
150807
|
+
title: Scalars['String']['output'];
|
|
150808
|
+
};
|
|
150809
|
+
export type JsmTelemetryIncidentContextResult = {
|
|
150810
|
+
__typename?: 'JsmTelemetryIncidentContextResult';
|
|
150811
|
+
data?: Maybe<JsmTelemetryIncidentContextResponse>;
|
|
150812
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150813
|
+
};
|
|
150814
|
+
export type JsmTelemetryIncidentTelemetryResult = {
|
|
150815
|
+
__typename?: 'JsmTelemetryIncidentTelemetryResult';
|
|
150816
|
+
data?: Maybe<Array<JsmTelemetryMetricDataResponse>>;
|
|
150817
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
150818
|
+
};
|
|
150078
150819
|
export type JsmTelemetryMetricAggregation = {
|
|
150079
150820
|
__typename?: 'JsmTelemetryMetricAggregation';
|
|
150080
150821
|
function: JsmTelemetryMetricAggregationFunction;
|
|
@@ -150188,6 +150929,7 @@ export type JsmTelemetryMetricMetadata = {
|
|
|
150188
150929
|
__typename?: 'JsmTelemetryMetricMetadata';
|
|
150189
150930
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
150190
150931
|
metricName: Scalars['String']['output'];
|
|
150932
|
+
serviceName?: Maybe<Scalars['String']['output']>;
|
|
150191
150933
|
type?: Maybe<JsmTelemetryMetricType>;
|
|
150192
150934
|
unit?: Maybe<Scalars['String']['output']>;
|
|
150193
150935
|
};
|
|
@@ -151047,6 +151789,7 @@ export declare enum KitsuneJobType {
|
|
|
151047
151789
|
ImportCustomer = "IMPORT_CUSTOMER",
|
|
151048
151790
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
151049
151791
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
151792
|
+
RefreshInsightCounters = "REFRESH_INSIGHT_COUNTERS",
|
|
151050
151793
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
151051
151794
|
ResyncInsights = "RESYNC_INSIGHTS",
|
|
151052
151795
|
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
@@ -151143,6 +151886,7 @@ export type KitsuneSection = Node & {
|
|
|
151143
151886
|
__typename?: 'KitsuneSection';
|
|
151144
151887
|
createdAt: Scalars['DateTime']['output'];
|
|
151145
151888
|
description?: Maybe<Scalars['String']['output']>;
|
|
151889
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151146
151890
|
id: Scalars['ID']['output'];
|
|
151147
151891
|
name: Scalars['String']['output'];
|
|
151148
151892
|
updatedAt: Scalars['DateTime']['output'];
|
|
@@ -151462,6 +152206,7 @@ export type KitsuneView = Node & {
|
|
|
151462
152206
|
__typename?: 'KitsuneView';
|
|
151463
152207
|
config?: Maybe<KitsuneViewConfig>;
|
|
151464
152208
|
description?: Maybe<Scalars['String']['output']>;
|
|
152209
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151465
152210
|
entityType: KitsuneEntityType;
|
|
151466
152211
|
id: Scalars['ID']['output'];
|
|
151467
152212
|
name: Scalars['String']['output'];
|
|
@@ -153548,6 +154293,29 @@ export type LoomCreateVideoReactionPayload = {
|
|
|
153548
154293
|
reaction?: Maybe<LoomVideoReaction>;
|
|
153549
154294
|
success: Scalars['Boolean']['output'];
|
|
153550
154295
|
};
|
|
154296
|
+
export type LoomCurrentUserVideosInput = {
|
|
154297
|
+
createdAtRange?: InputMaybe<LoomDateRangeInput>;
|
|
154298
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
154299
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
154300
|
+
siteId: Scalars['ID']['input'];
|
|
154301
|
+
sortOrder?: InputMaybe<LoomSortDirection>;
|
|
154302
|
+
source?: InputMaybe<LoomCurrentUserVideosSource>;
|
|
154303
|
+
};
|
|
154304
|
+
export type LoomCurrentUserVideosPayload = {
|
|
154305
|
+
__typename?: 'LoomCurrentUserVideosPayload';
|
|
154306
|
+
pageInfo?: Maybe<LoomPageInfo>;
|
|
154307
|
+
success: Scalars['Boolean']['output'];
|
|
154308
|
+
videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
154309
|
+
};
|
|
154310
|
+
export declare enum LoomCurrentUserVideosSource {
|
|
154311
|
+
All = "ALL",
|
|
154312
|
+
Mine = "MINE",
|
|
154313
|
+
SharedWithMe = "SHARED_WITH_ME"
|
|
154314
|
+
}
|
|
154315
|
+
export type LoomDateRangeInput = {
|
|
154316
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
154317
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
154318
|
+
};
|
|
153551
154319
|
export type LoomDeleteVideo = {
|
|
153552
154320
|
__typename?: 'LoomDeleteVideo';
|
|
153553
154321
|
failed?: Maybe<Array<Maybe<LoomDeleteVideoFailure>>>;
|
|
@@ -158772,33 +159540,37 @@ export type MercuryAsk = Node & {
|
|
|
158772
159540
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
158773
159541
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158774
159542
|
createdBy?: Maybe<User>;
|
|
158775
|
-
createdByUserId?: Maybe<Scalars['
|
|
159543
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158776
159544
|
description?: Maybe<Scalars['String']['output']>;
|
|
158777
159545
|
focusAreas?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158778
159546
|
goals?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
158779
159547
|
id: Scalars['ID']['output'];
|
|
158780
159548
|
impactedWork?: Maybe<MercuryImpactedWork>;
|
|
158781
|
-
impactedWorkId?: Maybe<Scalars['
|
|
159549
|
+
impactedWorkId?: Maybe<Scalars['ID']['output']>;
|
|
158782
159550
|
justification?: Maybe<Scalars['String']['output']>;
|
|
158783
159551
|
links?: Maybe<MercuryAskLinkConnection>;
|
|
158784
159552
|
name: Scalars['String']['output'];
|
|
158785
159553
|
owner?: Maybe<User>;
|
|
158786
|
-
ownerId?: Maybe<Scalars['
|
|
159554
|
+
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
158787
159555
|
priority: MercuryAskPriority;
|
|
158788
159556
|
proposedBy?: Maybe<User>;
|
|
158789
159557
|
proposedDate?: Maybe<MercuryAskTargetDate>;
|
|
159558
|
+
receivingOrganization?: Maybe<MercuryOrganization>;
|
|
159559
|
+
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158790
159560
|
receivingTeam?: Maybe<TeamV2>;
|
|
158791
|
-
receivingTeamId?: Maybe<Scalars['
|
|
159561
|
+
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158792
159562
|
status: MercuryAskStatus;
|
|
158793
159563
|
submitter?: Maybe<User>;
|
|
158794
|
-
submitterId: Scalars['
|
|
159564
|
+
submitterId: Scalars['ID']['output'];
|
|
159565
|
+
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
159566
|
+
submittingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
158795
159567
|
submittingTeam?: Maybe<TeamV2>;
|
|
158796
|
-
submittingTeamId?: Maybe<Scalars['
|
|
159568
|
+
submittingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
158797
159569
|
targetDate?: Maybe<MercuryAskTargetDate>;
|
|
158798
159570
|
transitions?: Maybe<Array<Maybe<MercuryAskTransition>>>;
|
|
158799
159571
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
158800
159572
|
updatedBy?: Maybe<User>;
|
|
158801
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159573
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
158802
159574
|
updates?: Maybe<MercuryAskStatusUpdateConnection>;
|
|
158803
159575
|
url?: Maybe<Scalars['URL']['output']>;
|
|
158804
159576
|
};
|
|
@@ -158811,6 +159583,7 @@ export type MercuryAskCommentsArgs = {
|
|
|
158811
159583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
158812
159584
|
cloudId: Scalars['ID']['input'];
|
|
158813
159585
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159586
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
158814
159587
|
};
|
|
158815
159588
|
export type MercuryAskConnectedWorkArgs = {
|
|
158816
159589
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158838,10 +159611,10 @@ export type MercuryAskUpdatesArgs = {
|
|
|
158838
159611
|
export type MercuryAskActivity = {
|
|
158839
159612
|
__typename?: 'MercuryAskActivity';
|
|
158840
159613
|
askActivityType: MercuryAskActivityType;
|
|
158841
|
-
askId: Scalars['
|
|
159614
|
+
askId: Scalars['ID']['output'];
|
|
158842
159615
|
askUpdatedAt: Scalars['DateTime']['output'];
|
|
158843
159616
|
askUpdatedByUser?: Maybe<User>;
|
|
158844
|
-
askUpdatedByUserId: Scalars['
|
|
159617
|
+
askUpdatedByUserId: Scalars['ID']['output'];
|
|
158845
159618
|
id: Scalars['ID']['output'];
|
|
158846
159619
|
updatedValues?: Maybe<Array<Maybe<MercuryAskActivityUpdatedValue>>>;
|
|
158847
159620
|
};
|
|
@@ -158855,9 +159628,11 @@ export declare enum MercuryAskActivityAttribute {
|
|
|
158855
159628
|
Owner = "OWNER",
|
|
158856
159629
|
Priority = "PRIORITY",
|
|
158857
159630
|
ProposedDate = "PROPOSED_DATE",
|
|
159631
|
+
ReceivingOrganization = "RECEIVING_ORGANIZATION",
|
|
158858
159632
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
158859
159633
|
Status = "STATUS",
|
|
158860
159634
|
Submitter = "SUBMITTER",
|
|
159635
|
+
SubmittingOrganization = "SUBMITTING_ORGANIZATION",
|
|
158861
159636
|
SubmittingTeam = "SUBMITTING_TEAM",
|
|
158862
159637
|
TargetDate = "TARGET_DATE"
|
|
158863
159638
|
}
|
|
@@ -158917,6 +159692,14 @@ export type MercuryAskActivityUpdatedLink = MercuryAskActivityUpdatedValue & {
|
|
|
158917
159692
|
newValue?: Maybe<MercuryAskActivityLink>;
|
|
158918
159693
|
oldValue?: Maybe<MercuryAskActivityLink>;
|
|
158919
159694
|
};
|
|
159695
|
+
export type MercuryAskActivityUpdatedOrganization = MercuryAskActivityUpdatedValue & {
|
|
159696
|
+
__typename?: 'MercuryAskActivityUpdatedOrganization';
|
|
159697
|
+
attribute: MercuryAskActivityAttribute;
|
|
159698
|
+
newOrganization?: Maybe<MercuryOrganization>;
|
|
159699
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
159700
|
+
oldOrganization?: Maybe<MercuryOrganization>;
|
|
159701
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
159702
|
+
};
|
|
158920
159703
|
export type MercuryAskActivityUpdatedPriority = MercuryAskActivityUpdatedValue & {
|
|
158921
159704
|
__typename?: 'MercuryAskActivityUpdatedPriority';
|
|
158922
159705
|
attribute: MercuryAskActivityAttribute;
|
|
@@ -158979,7 +159762,7 @@ export type MercuryAskConnectedWorkEdge = {
|
|
|
158979
159762
|
node?: Maybe<MercuryAskConnectedWork>;
|
|
158980
159763
|
};
|
|
158981
159764
|
export type MercuryAskConnectedWorkInput = {
|
|
158982
|
-
connectedWorkIds: Array<Scalars['
|
|
159765
|
+
connectedWorkIds: Array<Scalars['ID']['input']>;
|
|
158983
159766
|
id: Scalars['ID']['input'];
|
|
158984
159767
|
};
|
|
158985
159768
|
export type MercuryAskConnectedWorkPayload = Payload & {
|
|
@@ -159001,9 +159784,9 @@ export type MercuryAskEdge = {
|
|
|
159001
159784
|
};
|
|
159002
159785
|
export type MercuryAskLink = Node & {
|
|
159003
159786
|
__typename?: 'MercuryAskLink';
|
|
159004
|
-
askId: Scalars['
|
|
159787
|
+
askId: Scalars['ID']['output'];
|
|
159005
159788
|
attachedByUser?: Maybe<User>;
|
|
159006
|
-
attachedByUserId?: Maybe<Scalars['
|
|
159789
|
+
attachedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159007
159790
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
159008
159791
|
id: Scalars['ID']['output'];
|
|
159009
159792
|
linkText?: Maybe<Scalars['String']['output']>;
|
|
@@ -159043,7 +159826,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159043
159826
|
__typename?: 'MercuryAskStatusUpdate';
|
|
159044
159827
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159045
159828
|
createdBy?: Maybe<User>;
|
|
159046
|
-
createdByUserId?: Maybe<Scalars['
|
|
159829
|
+
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159047
159830
|
description?: Maybe<Scalars['String']['output']>;
|
|
159048
159831
|
id: Scalars['ID']['output'];
|
|
159049
159832
|
newProposedBy?: Maybe<User>;
|
|
@@ -159056,7 +159839,7 @@ export type MercuryAskStatusUpdate = {
|
|
|
159056
159839
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
159057
159840
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159058
159841
|
updatedBy?: Maybe<User>;
|
|
159059
|
-
updatedByUserId?: Maybe<Scalars['
|
|
159842
|
+
updatedByUserId?: Maybe<Scalars['ID']['output']>;
|
|
159060
159843
|
};
|
|
159061
159844
|
export type MercuryAskStatusUpdateConnection = {
|
|
159062
159845
|
__typename?: 'MercuryAskStatusUpdateConnection';
|
|
@@ -159098,7 +159881,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
159098
159881
|
}
|
|
159099
159882
|
export type MercuryAskTransition = {
|
|
159100
159883
|
__typename?: 'MercuryAskTransition';
|
|
159101
|
-
askId: Scalars['
|
|
159884
|
+
askId: Scalars['ID']['output'];
|
|
159102
159885
|
status?: Maybe<MercuryAskStatus>;
|
|
159103
159886
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159104
159887
|
};
|
|
@@ -159757,7 +160540,12 @@ export type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
|
159757
160540
|
commentType?: InputMaybe<MercuryCommentType>;
|
|
159758
160541
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159759
160542
|
parentId: Scalars['ID']['input'];
|
|
160543
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
159760
160544
|
};
|
|
160545
|
+
export declare enum MercuryCommentSortOrder {
|
|
160546
|
+
Asc = "ASC",
|
|
160547
|
+
Desc = "DESC"
|
|
160548
|
+
}
|
|
159761
160549
|
export declare enum MercuryCommentType {
|
|
159762
160550
|
Funds = "FUNDS"
|
|
159763
160551
|
}
|
|
@@ -159907,15 +160695,15 @@ export type MercuryCostType = Node & {
|
|
|
159907
160695
|
export type MercuryCreateAskInput = {
|
|
159908
160696
|
cloudId: Scalars['ID']['input'];
|
|
159909
160697
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
159910
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160698
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
159911
160699
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
159912
160700
|
name: Scalars['String']['input'];
|
|
159913
|
-
ownerId?: InputMaybe<Scalars['
|
|
160701
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
159914
160702
|
priority: MercuryAskPriority;
|
|
159915
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160703
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159916
160704
|
status: MercuryAskStatus;
|
|
159917
|
-
submitterId: Scalars['
|
|
159918
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160705
|
+
submitterId: Scalars['ID']['input'];
|
|
160706
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159919
160707
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159920
160708
|
};
|
|
159921
160709
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
@@ -159927,16 +160715,16 @@ export type MercuryCreateAskStatusUpdateInput = {
|
|
|
159927
160715
|
};
|
|
159928
160716
|
export type MercuryCreateAsksAskInput = {
|
|
159929
160717
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
159930
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
160718
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
159931
160719
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
159932
160720
|
links?: InputMaybe<Array<MercuryCreateAsksAskLinkInput>>;
|
|
159933
160721
|
name: Scalars['String']['input'];
|
|
159934
|
-
ownerId?: InputMaybe<Scalars['
|
|
160722
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
159935
160723
|
priority: MercuryAskPriority;
|
|
159936
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
160724
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159937
160725
|
status: MercuryAskStatus;
|
|
159938
|
-
submitterId: Scalars['
|
|
159939
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
160726
|
+
submitterId: Scalars['ID']['input'];
|
|
160727
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
159940
160728
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
159941
160729
|
};
|
|
159942
160730
|
export type MercuryCreateAsksAskLinkInput = {
|
|
@@ -160194,6 +160982,7 @@ export type MercuryCreateFocusAreaPayload = Payload & {
|
|
|
160194
160982
|
export type MercuryCreateFocusAreaStatusUpdateInput = {
|
|
160195
160983
|
cloudId: Scalars['ID']['input'];
|
|
160196
160984
|
focusAreaId: Scalars['ID']['input'];
|
|
160985
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
160197
160986
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
160198
160987
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
160199
160988
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160944,6 +161733,7 @@ export declare enum MercuryDismissalType {
|
|
|
160944
161733
|
Snooze = "SNOOZE"
|
|
160945
161734
|
}
|
|
160946
161735
|
export declare enum MercuryEntityType {
|
|
161736
|
+
Ask = "ASK",
|
|
160947
161737
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
160948
161738
|
Comment = "COMMENT",
|
|
160949
161739
|
FocusArea = "FOCUS_AREA",
|
|
@@ -161205,6 +161995,7 @@ export type MercuryFocusAreaFundsCommentsArgs = {
|
|
|
161205
161995
|
cloudId: Scalars['ID']['input'];
|
|
161206
161996
|
commentType?: MercuryCommentType;
|
|
161207
161997
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161998
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
161208
161999
|
};
|
|
161209
162000
|
export type MercuryFocusAreaLinkedGoalsArgs = {
|
|
161210
162001
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -161402,6 +162193,9 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
161402
162193
|
Red = "RED",
|
|
161403
162194
|
Yellow = "YELLOW"
|
|
161404
162195
|
}
|
|
162196
|
+
export type MercuryFocusAreaHealthInput = {
|
|
162197
|
+
healthId?: InputMaybe<Scalars['ID']['input']>;
|
|
162198
|
+
};
|
|
161405
162199
|
export type MercuryFocusAreaHierarchy = Node & {
|
|
161406
162200
|
__typename?: 'MercuryFocusAreaHierarchy';
|
|
161407
162201
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -163104,6 +163898,28 @@ export type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
|
163104
163898
|
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
163105
163899
|
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
163106
163900
|
};
|
|
163901
|
+
export declare enum MercuryNotificationChannel {
|
|
163902
|
+
ChatApp = "CHAT_APP",
|
|
163903
|
+
Email = "EMAIL",
|
|
163904
|
+
InApp = "IN_APP"
|
|
163905
|
+
}
|
|
163906
|
+
export declare enum MercuryNotificationGroup {
|
|
163907
|
+
Digest = "DIGEST",
|
|
163908
|
+
RealTime = "REAL_TIME"
|
|
163909
|
+
}
|
|
163910
|
+
export type MercuryNotificationPreference = {
|
|
163911
|
+
__typename?: 'MercuryNotificationPreference';
|
|
163912
|
+
channel: MercuryNotificationChannel;
|
|
163913
|
+
enabled: Scalars['Boolean']['output'];
|
|
163914
|
+
group: MercuryNotificationGroup;
|
|
163915
|
+
type: MercuryNotificationType;
|
|
163916
|
+
};
|
|
163917
|
+
export declare enum MercuryNotificationType {
|
|
163918
|
+
MonthlyDigest = "MONTHLY_DIGEST",
|
|
163919
|
+
OwnerUpdated = "OWNER_UPDATED",
|
|
163920
|
+
StatusUpdateCreated = "STATUS_UPDATE_CREATED",
|
|
163921
|
+
WatcherAdded = "WATCHER_ADDED"
|
|
163922
|
+
}
|
|
163107
163923
|
export type MercuryNumberCustomField = MercuryCustomField & {
|
|
163108
163924
|
__typename?: 'MercuryNumberCustomField';
|
|
163109
163925
|
createdBy?: Maybe<User>;
|
|
@@ -163381,10 +164197,15 @@ export type MercuryOrganizationMembership = Node & {
|
|
|
163381
164197
|
id: Scalars['ID']['output'];
|
|
163382
164198
|
organization?: Maybe<MercuryOrganization>;
|
|
163383
164199
|
startDate: Scalars['Date']['output'];
|
|
164200
|
+
teams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
163384
164201
|
updatedBy?: Maybe<User>;
|
|
163385
164202
|
updatedDate: Scalars['DateTime']['output'];
|
|
163386
164203
|
user?: Maybe<User>;
|
|
163387
164204
|
};
|
|
164205
|
+
export type MercuryOrganizationMembershipTeamsArgs = {
|
|
164206
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164207
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164208
|
+
};
|
|
163388
164209
|
export type MercuryOrganizationMembershipConnection = {
|
|
163389
164210
|
__typename?: 'MercuryOrganizationMembershipConnection';
|
|
163390
164211
|
edges?: Maybe<Array<Maybe<MercuryOrganizationMembershipEdge>>>;
|
|
@@ -163479,6 +164300,7 @@ export type MercuryOrganizationStatusUpdateCommentsArgs = {
|
|
|
163479
164300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163480
164301
|
cloudId: Scalars['ID']['input'];
|
|
163481
164302
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164303
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
163482
164304
|
};
|
|
163483
164305
|
export type MercuryOrganizationStatusUpdateConnection = {
|
|
163484
164306
|
__typename?: 'MercuryOrganizationStatusUpdateConnection';
|
|
@@ -164362,7 +165184,7 @@ export type MercuryProjectType = {
|
|
|
164362
165184
|
mercuryProjectTypeName?: Maybe<Scalars['String']['output']>;
|
|
164363
165185
|
};
|
|
164364
165186
|
export type MercuryPromoteWorkItemToImpactedWorkInput = {
|
|
164365
|
-
connectedWorkId: Scalars['
|
|
165187
|
+
connectedWorkId: Scalars['ID']['input'];
|
|
164366
165188
|
id: Scalars['ID']['input'];
|
|
164367
165189
|
};
|
|
164368
165190
|
export type MercuryProposeChangesInput = {
|
|
@@ -164726,6 +165548,7 @@ export type MercuryQueryApi = {
|
|
|
164726
165548
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
164727
165549
|
focusAreaActivityHistoryByIds?: Maybe<Array<Maybe<MercuryFocusAreaActivityHistory>>>;
|
|
164728
165550
|
focusAreaAsks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
165551
|
+
focusAreaCount?: Maybe<Scalars['Int']['output']>;
|
|
164729
165552
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
164730
165553
|
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
164731
165554
|
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
@@ -164745,6 +165568,7 @@ export type MercuryQueryApi = {
|
|
|
164745
165568
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
164746
165569
|
portfoliosByAris?: Maybe<Array<MercuryPortfolio>>;
|
|
164747
165570
|
searchFocusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
165571
|
+
userNotificationSettings?: Maybe<MercuryUserNotificationSettings>;
|
|
164748
165572
|
workspaceContext: MercuryWorkspaceContext;
|
|
164749
165573
|
};
|
|
164750
165574
|
export type MercuryQueryApiAiFocusAreaGoalContextDataArgs = {
|
|
@@ -164811,6 +165635,10 @@ export type MercuryQueryApiFocusAreaAsksArgs = {
|
|
|
164811
165635
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164812
165636
|
focusAreaId: Scalars['ID']['input'];
|
|
164813
165637
|
};
|
|
165638
|
+
export type MercuryQueryApiFocusAreaCountArgs = {
|
|
165639
|
+
cloudId: Scalars['ID']['input'];
|
|
165640
|
+
q: Scalars['String']['input'];
|
|
165641
|
+
};
|
|
164814
165642
|
export type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
164815
165643
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164816
165644
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164892,6 +165720,9 @@ export type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
164892
165720
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
164893
165721
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
|
|
164894
165722
|
};
|
|
165723
|
+
export type MercuryQueryApiUserNotificationSettingsArgs = {
|
|
165724
|
+
cloudId: Scalars['ID']['input'];
|
|
165725
|
+
};
|
|
164895
165726
|
export type MercuryQueryApiWorkspaceContextArgs = {
|
|
164896
165727
|
cloudId: Scalars['ID']['input'];
|
|
164897
165728
|
};
|
|
@@ -165102,18 +165933,18 @@ export type MercuryRequestPositionsChangeInput = {
|
|
|
165102
165933
|
export type MercuryRerankFocusAreaAbsoluteInput = {
|
|
165103
165934
|
containerId: Scalars['ID']['input'];
|
|
165104
165935
|
containerType: MercuryRankingContainerType;
|
|
165105
|
-
|
|
165106
|
-
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165936
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
165107
165937
|
newRank?: InputMaybe<Scalars['Int']['input']>;
|
|
165108
165938
|
};
|
|
165109
165939
|
export type MercuryRerankFocusAreaAbsolutePayload = Payload & {
|
|
165110
165940
|
__typename?: 'MercuryRerankFocusAreaAbsolutePayload';
|
|
165111
165941
|
errors?: Maybe<Array<MutationError>>;
|
|
165112
|
-
|
|
165942
|
+
focusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
165113
165943
|
success: Scalars['Boolean']['output'];
|
|
165114
165944
|
};
|
|
165115
165945
|
export type MercuryRerankFocusAreasInput = {
|
|
165116
165946
|
afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165947
|
+
beforeFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
165117
165948
|
containerId: Scalars['ID']['input'];
|
|
165118
165949
|
containerType: MercuryRankingContainerType;
|
|
165119
165950
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -165195,6 +166026,7 @@ export type MercuryRiskCommentsArgs = {
|
|
|
165195
166026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165196
166027
|
cloudId: Scalars['ID']['input'];
|
|
165197
166028
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166029
|
+
sortOrder?: InputMaybe<MercuryCommentSortOrder>;
|
|
165198
166030
|
};
|
|
165199
166031
|
export type MercuryRiskRiskStatusUpdatesArgs = {
|
|
165200
166032
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -165460,6 +166292,7 @@ export type MercuryRisksQueryApiRisksArgs = {
|
|
|
165460
166292
|
export type MercuryRisksQueryApiRisksByLikelihoodAndImpactArgs = {
|
|
165461
166293
|
cloudId: Scalars['ID']['input'];
|
|
165462
166294
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
166295
|
+
organizationIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165463
166296
|
riskStatusId: Scalars['ID']['input'];
|
|
165464
166297
|
};
|
|
165465
166298
|
export type MercuryRisksQueryApiRisksSearchArgs = {
|
|
@@ -166472,7 +167305,7 @@ export type MercuryUpdateAskDescriptionInput = {
|
|
|
166472
167305
|
};
|
|
166473
167306
|
export type MercuryUpdateAskImpactedWorkInput = {
|
|
166474
167307
|
id: Scalars['ID']['input'];
|
|
166475
|
-
impactedWorkId?: InputMaybe<Scalars['
|
|
167308
|
+
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
166476
167309
|
};
|
|
166477
167310
|
export type MercuryUpdateAskJustificationInput = {
|
|
166478
167311
|
id: Scalars['ID']['input'];
|
|
@@ -166484,7 +167317,7 @@ export type MercuryUpdateAskNameInput = {
|
|
|
166484
167317
|
};
|
|
166485
167318
|
export type MercuryUpdateAskOwnerInput = {
|
|
166486
167319
|
id: Scalars['ID']['input'];
|
|
166487
|
-
ownerId?: InputMaybe<Scalars['
|
|
167320
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
166488
167321
|
};
|
|
166489
167322
|
export type MercuryUpdateAskPriorityInput = {
|
|
166490
167323
|
id: Scalars['ID']['input'];
|
|
@@ -166492,25 +167325,25 @@ export type MercuryUpdateAskPriorityInput = {
|
|
|
166492
167325
|
};
|
|
166493
167326
|
export type MercuryUpdateAskReceivingFieldsInput = {
|
|
166494
167327
|
id: Scalars['ID']['input'];
|
|
166495
|
-
ownerId?: InputMaybe<Scalars['
|
|
166496
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167328
|
+
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
167329
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166497
167330
|
};
|
|
166498
167331
|
export type MercuryUpdateAskReceivingTeamInput = {
|
|
166499
167332
|
id: Scalars['ID']['input'];
|
|
166500
|
-
receivingTeamId?: InputMaybe<Scalars['
|
|
167333
|
+
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166501
167334
|
};
|
|
166502
167335
|
export type MercuryUpdateAskSubmitterInput = {
|
|
166503
167336
|
id: Scalars['ID']['input'];
|
|
166504
|
-
submitterId: Scalars['
|
|
167337
|
+
submitterId: Scalars['ID']['input'];
|
|
166505
167338
|
};
|
|
166506
167339
|
export type MercuryUpdateAskSubmittingFieldsInput = {
|
|
166507
167340
|
id: Scalars['ID']['input'];
|
|
166508
|
-
submitterId: Scalars['
|
|
166509
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167341
|
+
submitterId: Scalars['ID']['input'];
|
|
167342
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166510
167343
|
};
|
|
166511
167344
|
export type MercuryUpdateAskSubmittingTeamInput = {
|
|
166512
167345
|
id: Scalars['ID']['input'];
|
|
166513
|
-
submittingTeamId?: InputMaybe<Scalars['
|
|
167346
|
+
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
166514
167347
|
};
|
|
166515
167348
|
export type MercuryUpdateBenefitItemBenefitTypeInput = {
|
|
166516
167349
|
benefitTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -166805,6 +167638,7 @@ export type MercuryUpdateFocusAreaPayload = Payload & {
|
|
|
166805
167638
|
};
|
|
166806
167639
|
export type MercuryUpdateFocusAreaStatusUpdateInput = {
|
|
166807
167640
|
cloudId: Scalars['ID']['input'];
|
|
167641
|
+
health?: InputMaybe<MercuryFocusAreaHealthInput>;
|
|
166808
167642
|
id: Scalars['ID']['input'];
|
|
166809
167643
|
newTargetDate?: InputMaybe<MercuryFocusAreaTargetDateInput>;
|
|
166810
167644
|
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167133,6 +167967,10 @@ export type MercuryUserEdge = {
|
|
|
167133
167967
|
cursor: Scalars['String']['output'];
|
|
167134
167968
|
node?: Maybe<User>;
|
|
167135
167969
|
};
|
|
167970
|
+
export type MercuryUserNotificationSettings = {
|
|
167971
|
+
__typename?: 'MercuryUserNotificationSettings';
|
|
167972
|
+
preferences?: Maybe<Array<MercuryNotificationPreference>>;
|
|
167973
|
+
};
|
|
167136
167974
|
export type MercuryValidateFocusAreasForRankingInput = {
|
|
167137
167975
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
167138
167976
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -167450,6 +168288,11 @@ export type Mitigation = Node & {
|
|
|
167450
168288
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167451
168289
|
version?: Maybe<Scalars['Int']['output']>;
|
|
167452
168290
|
};
|
|
168291
|
+
export declare enum MitigationConfidence {
|
|
168292
|
+
High = "HIGH",
|
|
168293
|
+
Low = "LOW",
|
|
168294
|
+
Medium = "MEDIUM"
|
|
168295
|
+
}
|
|
167453
168296
|
export declare enum MitigationDocumentType {
|
|
167454
168297
|
Confluence = "CONFLUENCE",
|
|
167455
168298
|
GoogleDoc = "GOOGLE_DOC",
|
|
@@ -167480,7 +168323,6 @@ export declare enum MitigationHypothesisType {
|
|
|
167480
168323
|
}
|
|
167481
168324
|
export type MitigationIndicator = Node & {
|
|
167482
168325
|
__typename?: 'MitigationIndicator';
|
|
167483
|
-
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
167484
168326
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167485
168327
|
details?: Maybe<MitigationIndicatorDetails>;
|
|
167486
168328
|
id: Scalars['ID']['output'];
|
|
@@ -167512,6 +168354,7 @@ export declare enum MitigationPipelineStep {
|
|
|
167512
168354
|
}
|
|
167513
168355
|
export type MitigationPlan = Node & {
|
|
167514
168356
|
__typename?: 'MitigationPlan';
|
|
168357
|
+
confidence?: Maybe<MitigationConfidence>;
|
|
167515
168358
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
167516
168359
|
id: Scalars['ID']['output'];
|
|
167517
168360
|
indicatorId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -167701,6 +168544,7 @@ export type Mutation = {
|
|
|
167701
168544
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
167702
168545
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
167703
168546
|
agentStudio_updateAgentModelVersion?: Maybe<AgentStudioUpdateAgentModelVersionPayload>;
|
|
168547
|
+
agentStudio_updateAgentValueConfig?: Maybe<AgentStudioUpdateAgentValueConfigPayload>;
|
|
167704
168548
|
agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
|
|
167705
168549
|
agentStudio_updateConversationConfiguration?: Maybe<AgentStudioUpdateConversationConfigurationPayload>;
|
|
167706
168550
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
@@ -167733,6 +168577,7 @@ export type Mutation = {
|
|
|
167733
168577
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
167734
168578
|
agentWorkspace_setDraftedRoutingTableServiceField?: Maybe<AgentWorkspaceSetDraftedRoutingTableServiceFieldPayload>;
|
|
167735
168579
|
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
168580
|
+
agentWorkspace_setShiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfigPayload>;
|
|
167736
168581
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
167737
168582
|
agentWorkspace_setWorkloadJql?: Maybe<AgentWorkspaceSetWorkloadJqlPayload>;
|
|
167738
168583
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
@@ -167742,6 +168587,8 @@ export type Mutation = {
|
|
|
167742
168587
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
167743
168588
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
167744
168589
|
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
|
|
168590
|
+
agentWorkspace_updateConfigurableRoutingInputs?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
168591
|
+
agentWorkspace_updateConfigurableRoutingTriggers?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
167745
168592
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
167746
168593
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
167747
168594
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
@@ -168363,6 +169210,7 @@ export type Mutation = {
|
|
|
168363
169210
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168364
169211
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
168365
169212
|
globalApp_signForgeContextTokens?: Maybe<GlobalAppSignForgeContextTokensResponse>;
|
|
169213
|
+
globalApp_tmpPersonalAppSignForgeContextTokens?: Maybe<GlobalAppTmpPersonalAppSignForgeContextTokensResponse>;
|
|
168366
169214
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
168367
169215
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
168368
169216
|
goals_addView?: Maybe<TownsquareGoalsAddViewPayload>;
|
|
@@ -168824,8 +169672,10 @@ export type Mutation = {
|
|
|
168824
169672
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
168825
169673
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
168826
169674
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
169675
|
+
kitsune_linkInsightsToIdea?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
168827
169676
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
168828
169677
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
169678
|
+
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
168829
169679
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
168830
169680
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
168831
169681
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -168997,6 +169847,7 @@ export type Mutation = {
|
|
|
168997
169847
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
168998
169848
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
168999
169849
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
169850
|
+
projects_removeWatchers?: Maybe<TownsquareProjectsRemoveWatchersPayload>;
|
|
169000
169851
|
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
169001
169852
|
projects_setDefaultAccessLevel?: Maybe<TownsquareProjectsSetDefaultAccessLevelPayload>;
|
|
169002
169853
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
@@ -169007,12 +169858,16 @@ export type Mutation = {
|
|
|
169007
169858
|
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
169008
169859
|
projects_updateSlackSubscription?: Maybe<TownsquareProjectsUpdateSlackSubscriptionPayload>;
|
|
169009
169860
|
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
169861
|
+
psm_finishOnboardTenant?: Maybe<PsmFinishOnboardTenantPayload>;
|
|
169862
|
+
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
169863
|
+
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
169010
169864
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
169011
169865
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
169012
169866
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
169013
169867
|
radar_createAiConnector?: Maybe<RadarAiConnector>;
|
|
169014
169868
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
169015
169869
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
169870
|
+
radar_createSkill?: Maybe<RadarSkill>;
|
|
169016
169871
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
169017
169872
|
radar_deleteCustomFieldDefinitions?: Maybe<RadarDeleteCustomFieldDefinitionsMutationResponse>;
|
|
169018
169873
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
@@ -169036,7 +169891,7 @@ export type Mutation = {
|
|
|
169036
169891
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
169037
169892
|
radar_updateSkill?: Maybe<RadarSkill>;
|
|
169038
169893
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
169039
|
-
radar_upsertAiScopedBudgetPolicies?: Maybe<
|
|
169894
|
+
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
169040
169895
|
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
169041
169896
|
radar_upsertLastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
169042
169897
|
radar_upsertView?: Maybe<RadarView>;
|
|
@@ -169597,6 +170452,11 @@ export type MutationAgentStudio_UpdateAgentModelVersionArgs = {
|
|
|
169597
170452
|
action: AgentStudioModelUpgradeAction;
|
|
169598
170453
|
id: Scalars['ID']['input'];
|
|
169599
170454
|
};
|
|
170455
|
+
export type MutationAgentStudio_UpdateAgentValueConfigArgs = {
|
|
170456
|
+
cloudId: Scalars['String']['input'];
|
|
170457
|
+
id: Scalars['ID']['input'];
|
|
170458
|
+
input: AgentStudioUpdateAgentValueConfigInput;
|
|
170459
|
+
};
|
|
169600
170460
|
export type MutationAgentStudio_UpdateAgentVerificationArgs = {
|
|
169601
170461
|
id: Scalars['ID']['input'];
|
|
169602
170462
|
verified: Scalars['Boolean']['input'];
|
|
@@ -169709,6 +170569,9 @@ export type MutationAgentWorkspace_SetDraftedRoutingTableServiceFieldArgs = {
|
|
|
169709
170569
|
export type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
|
|
169710
170570
|
input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
|
|
169711
170571
|
};
|
|
170572
|
+
export type MutationAgentWorkspace_SetShiftReminderConfigArgs = {
|
|
170573
|
+
input: AgentWorkspaceSetShiftReminderConfigInput;
|
|
170574
|
+
};
|
|
169712
170575
|
export type MutationAgentWorkspace_SetTeamCapacitiesArgs = {
|
|
169713
170576
|
input: AgentWorkspaceSetTeamCapacitiesInput;
|
|
169714
170577
|
};
|
|
@@ -169737,6 +170600,12 @@ export type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
|
169737
170600
|
export type MutationAgentWorkspace_UnassignCoverShiftArgs = {
|
|
169738
170601
|
input: AgentWorkspaceUnassignCoverShiftInput;
|
|
169739
170602
|
};
|
|
170603
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingInputsArgs = {
|
|
170604
|
+
input: AgentWorkspaceUpdateConfigurableRoutingInputsInput;
|
|
170605
|
+
};
|
|
170606
|
+
export type MutationAgentWorkspace_UpdateConfigurableRoutingTriggersArgs = {
|
|
170607
|
+
input: AgentWorkspaceUpdateConfigurableRoutingTriggersInput;
|
|
170608
|
+
};
|
|
169740
170609
|
export type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
169741
170610
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
169742
170611
|
};
|
|
@@ -172033,6 +172902,9 @@ export type MutationGeneratePermsReportArgs = {
|
|
|
172033
172902
|
export type MutationGlobalApp_SignForgeContextTokensArgs = {
|
|
172034
172903
|
input: GlobalAppSignForgeContextTokensInput;
|
|
172035
172904
|
};
|
|
172905
|
+
export type MutationGlobalApp_TmpPersonalAppSignForgeContextTokensArgs = {
|
|
172906
|
+
input: GlobalAppTmpPersonalAppSignForgeContextTokensInput;
|
|
172907
|
+
};
|
|
172036
172908
|
export type MutationGoals_AddGoalTeamLinkArgs = {
|
|
172037
172909
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
172038
172910
|
};
|
|
@@ -173478,6 +174350,7 @@ export type MutationKitsune_CreateOrganizationFieldArgs = {
|
|
|
173478
174350
|
};
|
|
173479
174351
|
export type MutationKitsune_CreateSectionArgs = {
|
|
173480
174352
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174353
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173481
174354
|
name: Scalars['String']['input'];
|
|
173482
174355
|
spaceAri: Scalars['ID']['input'];
|
|
173483
174356
|
};
|
|
@@ -173494,6 +174367,7 @@ export type MutationKitsune_CreateSpaceArgs = {
|
|
|
173494
174367
|
export type MutationKitsune_CreateViewArgs = {
|
|
173495
174368
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173496
174369
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174370
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173497
174371
|
entityType?: InputMaybe<KitsuneEntityType>;
|
|
173498
174372
|
name: Scalars['String']['input'];
|
|
173499
174373
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -173510,6 +174384,10 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
173510
174384
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
173511
174385
|
insightAri: Scalars['ID']['input'];
|
|
173512
174386
|
};
|
|
174387
|
+
export type MutationKitsune_LinkInsightsToIdeaArgs = {
|
|
174388
|
+
ideaAri: Scalars['ID']['input'];
|
|
174389
|
+
insightIds: Array<Scalars['ID']['input']>;
|
|
174390
|
+
};
|
|
173513
174391
|
export type MutationKitsune_MoveSectionArgs = {
|
|
173514
174392
|
rank: KitsuneRankInput;
|
|
173515
174393
|
sectionAri: Scalars['ID']['input'];
|
|
@@ -173519,6 +174397,9 @@ export type MutationKitsune_MoveViewArgs = {
|
|
|
173519
174397
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
173520
174398
|
viewAri: Scalars['ID']['input'];
|
|
173521
174399
|
};
|
|
174400
|
+
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
174401
|
+
workspaceAri: Scalars['ID']['input'];
|
|
174402
|
+
};
|
|
173522
174403
|
export type MutationKitsune_RemoveCustomerArgs = {
|
|
173523
174404
|
ari: Scalars['ID']['input'];
|
|
173524
174405
|
};
|
|
@@ -173624,6 +174505,7 @@ export type MutationKitsune_UpdateOrganizationFieldArgs = {
|
|
|
173624
174505
|
};
|
|
173625
174506
|
export type MutationKitsune_UpdateSectionArgs = {
|
|
173626
174507
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174508
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173627
174509
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173628
174510
|
sectionAri: Scalars['ID']['input'];
|
|
173629
174511
|
};
|
|
@@ -173640,6 +174522,7 @@ export type MutationKitsune_UpdateSpaceArgs = {
|
|
|
173640
174522
|
export type MutationKitsune_UpdateViewArgs = {
|
|
173641
174523
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
173642
174524
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
174525
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
173643
174526
|
id: Scalars['ID']['input'];
|
|
173644
174527
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
173645
174528
|
};
|
|
@@ -174043,6 +174926,9 @@ export type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
|
174043
174926
|
export type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
174044
174927
|
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
174045
174928
|
};
|
|
174929
|
+
export type MutationProjects_RemoveWatchersArgs = {
|
|
174930
|
+
input: TownsquareProjectsRemoveWatchersInput;
|
|
174931
|
+
};
|
|
174046
174932
|
export type MutationProjects_RevokeAccessArgs = {
|
|
174047
174933
|
input: TownsquareProjectRevokeAccessInput;
|
|
174048
174934
|
};
|
|
@@ -174070,6 +174956,17 @@ export type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
|
174070
174956
|
export type MutationProjects_UpdateSlackSubscriptionArgs = {
|
|
174071
174957
|
input: TownsquareProjectsUpdateSlackSubscriptionInput;
|
|
174072
174958
|
};
|
|
174959
|
+
export type MutationPsm_FinishOnboardTenantArgs = {
|
|
174960
|
+
cloudId: Scalars['ID']['input'];
|
|
174961
|
+
input: PsmFinishOnboardTenantInput;
|
|
174962
|
+
};
|
|
174963
|
+
export type MutationPsm_OnboardTenantArgs = {
|
|
174964
|
+
cloudId: Scalars['ID']['input'];
|
|
174965
|
+
input: PsmOnboardTenantInput;
|
|
174966
|
+
};
|
|
174967
|
+
export type MutationPsm_RegisterDeviceArgs = {
|
|
174968
|
+
input: PsmRegisterDeviceInput;
|
|
174969
|
+
};
|
|
174073
174970
|
export type MutationPublicLinkPagesAdminActionArgs = {
|
|
174074
174971
|
action: PublicLinkAdminAction;
|
|
174075
174972
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -174095,6 +174992,10 @@ export type MutationRadar_CreateRoleAssignmentArgs = {
|
|
|
174095
174992
|
cloudId: Scalars['ID']['input'];
|
|
174096
174993
|
input: RadarRoleAssignmentRequest;
|
|
174097
174994
|
};
|
|
174995
|
+
export type MutationRadar_CreateSkillArgs = {
|
|
174996
|
+
cloudId: Scalars['ID']['input'];
|
|
174997
|
+
input: RadarCreateSkillInput;
|
|
174998
|
+
};
|
|
174098
174999
|
export type MutationRadar_DeleteConnectorArgs = {
|
|
174099
175000
|
cloudId: Scalars['ID']['input'];
|
|
174100
175001
|
input: RadarDeleteConnectorInput;
|
|
@@ -174187,7 +175088,7 @@ export type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
174187
175088
|
};
|
|
174188
175089
|
export type MutationRadar_UpsertAiScopedBudgetPoliciesArgs = {
|
|
174189
175090
|
cloudId: Scalars['ID']['input'];
|
|
174190
|
-
input:
|
|
175091
|
+
input: RadarUpsertAiScopedBudgetPoliciesInput;
|
|
174191
175092
|
};
|
|
174192
175093
|
export type MutationRadar_UpsertAiWorkspaceBudgetPolicyArgs = {
|
|
174193
175094
|
cloudId: Scalars['ID']['input'];
|
|
@@ -177760,6 +178661,9 @@ export type ProactiveAiRovoInsightsStatusResponse = {
|
|
|
177760
178661
|
generatedAt?: Maybe<Scalars['String']['output']>;
|
|
177761
178662
|
insightsAvailable: Scalars['Boolean']['output'];
|
|
177762
178663
|
};
|
|
178664
|
+
export type ProactiveAiStratusTestInsightsAccountIdOverride = {
|
|
178665
|
+
accountId: Scalars['String']['input'];
|
|
178666
|
+
};
|
|
177763
178667
|
export type ProactiveAiStratusTestInsightsMinion = {
|
|
177764
178668
|
__typename?: 'ProactiveAiStratusTestInsightsMinion';
|
|
177765
178669
|
name: Scalars['String']['output'];
|
|
@@ -177850,6 +178754,88 @@ export type ProvisionDemoSiteResponse = {
|
|
|
177850
178754
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
177851
178755
|
xnId?: Maybe<Scalars['String']['output']>;
|
|
177852
178756
|
};
|
|
178757
|
+
export type PsmDevice = {
|
|
178758
|
+
__typename?: 'PsmDevice';
|
|
178759
|
+
atlassianAccountId: Scalars['ID']['output'];
|
|
178760
|
+
cloudId: Scalars['ID']['output'];
|
|
178761
|
+
createdAt: Scalars['DateTime']['output'];
|
|
178762
|
+
lastSeen?: Maybe<Scalars['DateTime']['output']>;
|
|
178763
|
+
providerSystemId?: Maybe<Scalars['ID']['output']>;
|
|
178764
|
+
serialNumber: Scalars['String']['output'];
|
|
178765
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
178766
|
+
status: PsmDeviceStatus;
|
|
178767
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
178768
|
+
};
|
|
178769
|
+
export type PsmDeviceConnection = {
|
|
178770
|
+
__typename?: 'PsmDeviceConnection';
|
|
178771
|
+
edges?: Maybe<Array<PsmDeviceEdge>>;
|
|
178772
|
+
errors?: Maybe<Array<QueryError>>;
|
|
178773
|
+
nodes?: Maybe<Array<Maybe<PsmDevice>>>;
|
|
178774
|
+
pageInfo: PageInfo;
|
|
178775
|
+
};
|
|
178776
|
+
export type PsmDeviceEdge = {
|
|
178777
|
+
__typename?: 'PsmDeviceEdge';
|
|
178778
|
+
cursor: Scalars['String']['output'];
|
|
178779
|
+
node?: Maybe<PsmDevice>;
|
|
178780
|
+
};
|
|
178781
|
+
export declare enum PsmDeviceStatus {
|
|
178782
|
+
Active = "ACTIVE",
|
|
178783
|
+
Offline = "OFFLINE",
|
|
178784
|
+
Orphan = "ORPHAN",
|
|
178785
|
+
Unmapped = "UNMAPPED"
|
|
178786
|
+
}
|
|
178787
|
+
export type PsmFinishOnboardTenantInput = {
|
|
178788
|
+
spaceId: Scalars['ID']['input'];
|
|
178789
|
+
};
|
|
178790
|
+
export type PsmFinishOnboardTenantPayload = Payload & {
|
|
178791
|
+
__typename?: 'PsmFinishOnboardTenantPayload';
|
|
178792
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178793
|
+
success: Scalars['Boolean']['output'];
|
|
178794
|
+
tenant?: Maybe<PsmTenant>;
|
|
178795
|
+
};
|
|
178796
|
+
export type PsmOnboardTenantInput = {
|
|
178797
|
+
spaceId: Scalars['ID']['input'];
|
|
178798
|
+
};
|
|
178799
|
+
export type PsmOnboardTenantPayload = Payload & {
|
|
178800
|
+
__typename?: 'PsmOnboardTenantPayload';
|
|
178801
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178802
|
+
success: Scalars['Boolean']['output'];
|
|
178803
|
+
tenant?: Maybe<PsmTenant>;
|
|
178804
|
+
};
|
|
178805
|
+
export declare enum PsmOnboardTenantStatus {
|
|
178806
|
+
ConfigurationUploadSuccess = "CONFIGURATION_UPLOAD_SUCCESS",
|
|
178807
|
+
Failed = "FAILED",
|
|
178808
|
+
Initiated = "INITIATED",
|
|
178809
|
+
Onboarded = "ONBOARDED"
|
|
178810
|
+
}
|
|
178811
|
+
export type PsmOnboardTenantStatusInput = {
|
|
178812
|
+
spaceId: Scalars['ID']['input'];
|
|
178813
|
+
};
|
|
178814
|
+
export type PsmOnboardTenantStatusResult = {
|
|
178815
|
+
__typename?: 'PsmOnboardTenantStatusResult';
|
|
178816
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178817
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178818
|
+
spaceId: Scalars['ID']['output'];
|
|
178819
|
+
status: PsmOnboardTenantStatus;
|
|
178820
|
+
};
|
|
178821
|
+
export type PsmRegisterDeviceInput = {
|
|
178822
|
+
atlassianAccountId: Scalars['ID']['input'];
|
|
178823
|
+
cloudId: Scalars['ID']['input'];
|
|
178824
|
+
serialNumber: Scalars['String']['input'];
|
|
178825
|
+
};
|
|
178826
|
+
export type PsmRegisterDevicePayload = Payload & {
|
|
178827
|
+
__typename?: 'PsmRegisterDevicePayload';
|
|
178828
|
+
device?: Maybe<PsmDevice>;
|
|
178829
|
+
errors?: Maybe<Array<MutationError>>;
|
|
178830
|
+
success: Scalars['Boolean']['output'];
|
|
178831
|
+
};
|
|
178832
|
+
export type PsmTenant = {
|
|
178833
|
+
__typename?: 'PsmTenant';
|
|
178834
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
178835
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
178836
|
+
spaceId: Scalars['ID']['output'];
|
|
178837
|
+
status: PsmOnboardTenantStatus;
|
|
178838
|
+
};
|
|
177853
178839
|
export type PublicLink = {
|
|
177854
178840
|
__typename?: 'PublicLink';
|
|
177855
178841
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -178218,6 +179204,7 @@ export type Query = {
|
|
|
178218
179204
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
178219
179205
|
agentStudio_agentByIdForDuplicate?: Maybe<AgentStudioAgentResult>;
|
|
178220
179206
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
179207
|
+
agentStudio_agentValueConfig?: Maybe<AgentStudioAgentValueConfigResult>;
|
|
178221
179208
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
178222
179209
|
agentStudio_authReadinessForAgent?: Maybe<AgentStudioAuthReadinessResult>;
|
|
178223
179210
|
agentStudio_batchEvalConversationById?: Maybe<AgentStudioConversationResult>;
|
|
@@ -178299,10 +179286,12 @@ export type Query = {
|
|
|
178299
179286
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
178300
179287
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
178301
179288
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
179289
|
+
agentWorkspace_serviceOptions?: Maybe<AgentWorkspaceServiceOptionsPage>;
|
|
178302
179290
|
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178303
179291
|
agentWorkspace_servicesConfiguredInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178304
179292
|
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
178305
179293
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
179294
|
+
agentWorkspace_shiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfig>;
|
|
178306
179295
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
178307
179296
|
agentWorkspace_siteWfoStatus?: Maybe<AgentWorkspaceSiteWfoStatus>;
|
|
178308
179297
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
@@ -178428,6 +179417,7 @@ export type Query = {
|
|
|
178428
179417
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
178429
179418
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
178430
179419
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
179420
|
+
assetsDM_objectsListDataRowsV2?: Maybe<AssetsDmObjectsListDataRows>;
|
|
178431
179421
|
assetsDM_objectsListDownload?: Maybe<AssetsDmObjectsListDownloadResponse>;
|
|
178432
179422
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
178433
179423
|
assetsDM_objectsReportAttributePie?: Maybe<AssetsDmObjectsReportAttributePie>;
|
|
@@ -178436,6 +179426,7 @@ export type Query = {
|
|
|
178436
179426
|
assetsDM_paginatedIssues?: Maybe<AssetsDmComputedIssuesPagination>;
|
|
178437
179427
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
178438
179428
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
179429
|
+
assetsDM_savedSearchDetailsV2?: Maybe<AssetsDmSavedSearchDetailsV2>;
|
|
178439
179430
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
178440
179431
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
178441
179432
|
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
@@ -178444,6 +179435,7 @@ export type Query = {
|
|
|
178444
179435
|
assetsVertical_asyncTask?: Maybe<AssetsVerticalAsyncTaskResult>;
|
|
178445
179436
|
assetsVertical_asyncTasks?: Maybe<AssetsVerticalAsyncTaskConnection>;
|
|
178446
179437
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
179438
|
+
assetsVertical_checkPermissions?: Maybe<AssetsVerticalCheckPermissionsResult>;
|
|
178447
179439
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
178448
179440
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
178449
179441
|
assetsVertical_customInsightResult?: Maybe<AssetsVerticalCustomInsightResultUnion>;
|
|
@@ -178465,13 +179457,15 @@ export type Query = {
|
|
|
178465
179457
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
178466
179458
|
assetsVertical_modelObjectTypes?: Maybe<AssetsVerticalModelObjectTypesResult>;
|
|
178467
179459
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
178468
|
-
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<
|
|
178469
|
-
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<
|
|
179460
|
+
assetsVertical_nonConfiguredAssetTypesTrackings?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179461
|
+
assetsVertical_nonConfiguredDepreciationRuleAssetTypes?: Maybe<AssetsVerticalNonConfiguredAssetTypeConnection>;
|
|
179462
|
+
assetsVertical_nonConfiguredItemMappings?: Maybe<AssetsVerticalNonConfiguredItemMappingConnection>;
|
|
178470
179463
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
178471
179464
|
assetsVertical_rolesForPrincipals?: Maybe<AssetsVerticalRolesForPrincipalsResult>;
|
|
178472
179465
|
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
178473
179466
|
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
178474
179467
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
179468
|
+
assetsVertical_tenantContext?: Maybe<AssetsVerticalTenantContextResult>;
|
|
178475
179469
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
178476
179470
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
178477
179471
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
@@ -178664,7 +179658,6 @@ export type Query = {
|
|
|
178664
179658
|
confluence_contentTreeChildren?: Maybe<ConfluenceContentTreeItemConnection>;
|
|
178665
179659
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
178666
179660
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
178667
|
-
confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
178668
179661
|
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
178669
179662
|
confluence_cutoverDate?: Maybe<ConfluenceCutoverDate>;
|
|
178670
179663
|
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
@@ -179028,6 +180021,9 @@ export type Query = {
|
|
|
179028
180021
|
glance_getCurrentUserSettings?: Maybe<UserSettings>;
|
|
179029
180022
|
glance_getPipelineEvents?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
179030
180023
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
180024
|
+
globalApp_extensionsByContextAri?: Maybe<GlobalAppExtensionsResponse>;
|
|
180025
|
+
globalApp_extensionsByInstallationId?: Maybe<GlobalAppExtensionsResponse>;
|
|
180026
|
+
globalApp_isProductAdmin?: Maybe<GlobalAppIsProductAdminResponse>;
|
|
179031
180027
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
179032
180028
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
179033
180029
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -181338,10 +182334,12 @@ export type Query = {
|
|
|
181338
182334
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
181339
182335
|
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
181340
182336
|
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
182337
|
+
jsmTelemetry_getIncidentContext?: Maybe<JsmTelemetryIncidentContextResult>;
|
|
181341
182338
|
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
181342
182339
|
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
181343
182340
|
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
181344
182341
|
jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
|
|
182342
|
+
jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
|
|
181345
182343
|
jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
|
|
181346
182344
|
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
181347
182345
|
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
@@ -181410,6 +182408,7 @@ export type Query = {
|
|
|
181410
182408
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
181411
182409
|
loom_connectedCalendars?: Maybe<Array<Maybe<LoomConnectedCalendar>>>;
|
|
181412
182410
|
loom_createSpace?: Maybe<LoomSpace>;
|
|
182411
|
+
loom_currentUserVideos?: Maybe<LoomCurrentUserVideosPayload>;
|
|
181413
182412
|
loom_foldersSearch?: Maybe<Array<Maybe<LoomFolder>>>;
|
|
181414
182413
|
loom_joinableWorkspaces?: Maybe<Array<Maybe<LoomJoinableWorkspace>>>;
|
|
181415
182414
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
@@ -181566,6 +182565,9 @@ export type Query = {
|
|
|
181566
182565
|
projects_statusSummary?: Maybe<TownsquareStatusSummary>;
|
|
181567
182566
|
projects_statusSummaryForTag?: Maybe<TownsquareStatusSummaryForTag>;
|
|
181568
182567
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
182568
|
+
psm_device?: Maybe<PsmDevice>;
|
|
182569
|
+
psm_devices?: Maybe<PsmDeviceConnection>;
|
|
182570
|
+
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
181569
182571
|
ptpage?: Maybe<PtPage>;
|
|
181570
182572
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
181571
182573
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -181801,6 +182803,7 @@ export type Query = {
|
|
|
181801
182803
|
tenant?: Maybe<Tenant>;
|
|
181802
182804
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
181803
182805
|
testing?: Maybe<Testing>;
|
|
182806
|
+
testingV2?: Maybe<Testing>;
|
|
181804
182807
|
timeseriesCount?: Maybe<TimeseriesCount>;
|
|
181805
182808
|
timeseriesPageBlogCount?: Maybe<TimeseriesPageBlogCount>;
|
|
181806
182809
|
timeseriesUniqueUserCount?: Maybe<TimeseriesUniqueUserCount>;
|
|
@@ -182209,6 +183212,10 @@ export type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
182209
183212
|
cloudId: Scalars['String']['input'];
|
|
182210
183213
|
id: Scalars['ID']['input'];
|
|
182211
183214
|
};
|
|
183215
|
+
export type QueryAgentStudio_AgentValueConfigArgs = {
|
|
183216
|
+
cloudId: Scalars['String']['input'];
|
|
183217
|
+
id: Scalars['ID']['input'];
|
|
183218
|
+
};
|
|
182212
183219
|
export type QueryAgentStudio_AgentsByIdsArgs = {
|
|
182213
183220
|
ids: Array<Scalars['ID']['input']>;
|
|
182214
183221
|
};
|
|
@@ -182344,6 +183351,7 @@ export type QueryAgentStudio_GetAllTemplatesArgs = {
|
|
|
182344
183351
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182345
183352
|
cloudId: Scalars['String']['input'];
|
|
182346
183353
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183354
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
182347
183355
|
};
|
|
182348
183356
|
export type QueryAgentStudio_GetAvailableExecutionConfigsArgs = {
|
|
182349
183357
|
cloudId: Scalars['String']['input'];
|
|
@@ -182652,6 +183660,15 @@ export type QueryAgentWorkspace_SchedulesArgs = {
|
|
|
182652
183660
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
182653
183661
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
182654
183662
|
};
|
|
183663
|
+
export type QueryAgentWorkspace_ServiceOptionsArgs = {
|
|
183664
|
+
cloudId: Scalars['ID']['input'];
|
|
183665
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
183666
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
183667
|
+
projectId: Scalars['ID']['input'];
|
|
183668
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
183669
|
+
serviceFieldId: Scalars['ID']['input'];
|
|
183670
|
+
serviceFieldType: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
183671
|
+
};
|
|
182655
183672
|
export type QueryAgentWorkspace_ServicesArgs = {
|
|
182656
183673
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182657
183674
|
cloudId: Scalars['ID']['input'];
|
|
@@ -182678,6 +183695,10 @@ export type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
|
182678
183695
|
export type QueryAgentWorkspace_ShiftEditBoundsArgs = {
|
|
182679
183696
|
input: AgentWorkspaceShiftEditBoundsInput;
|
|
182680
183697
|
};
|
|
183698
|
+
export type QueryAgentWorkspace_ShiftReminderConfigArgs = {
|
|
183699
|
+
cloudId: Scalars['ID']['input'];
|
|
183700
|
+
projectId: Scalars['ID']['input'];
|
|
183701
|
+
};
|
|
182681
183702
|
export type QueryAgentWorkspace_ShiftsArgs = {
|
|
182682
183703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182683
183704
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -183356,6 +184377,14 @@ export type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
183356
184377
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
183357
184378
|
workspaceId: Scalars['ID']['input'];
|
|
183358
184379
|
};
|
|
184380
|
+
export type QueryAssetsDm_ObjectsListDataRowsV2Args = {
|
|
184381
|
+
cloudId: Scalars['ID']['input'];
|
|
184382
|
+
objectId: Scalars['ID']['input'];
|
|
184383
|
+
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
184384
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroupV2>;
|
|
184385
|
+
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
184386
|
+
workspaceId: Scalars['ID']['input'];
|
|
184387
|
+
};
|
|
183359
184388
|
export type QueryAssetsDm_ObjectsListDownloadArgs = {
|
|
183360
184389
|
cloudId: Scalars['ID']['input'];
|
|
183361
184390
|
name: Scalars['String']['input'];
|
|
@@ -183409,6 +184438,11 @@ export type QueryAssetsDm_SavedSearchDetailsArgs = {
|
|
|
183409
184438
|
savedSearchId: Scalars['ID']['input'];
|
|
183410
184439
|
workspaceId: Scalars['ID']['input'];
|
|
183411
184440
|
};
|
|
184441
|
+
export type QueryAssetsDm_SavedSearchDetailsV2Args = {
|
|
184442
|
+
cloudId: Scalars['ID']['input'];
|
|
184443
|
+
savedSearchId: Scalars['ID']['input'];
|
|
184444
|
+
workspaceId: Scalars['ID']['input'];
|
|
184445
|
+
};
|
|
183412
184446
|
export type QueryAssetsDm_SavedSearchesListArgs = {
|
|
183413
184447
|
cloudId: Scalars['ID']['input'];
|
|
183414
184448
|
objectId: Scalars['ID']['input'];
|
|
@@ -183453,6 +184487,10 @@ export type QueryAssetsVertical_BundleArgs = {
|
|
|
183453
184487
|
cloudId: Scalars['ID']['input'];
|
|
183454
184488
|
type: AssetsVerticalBundleType;
|
|
183455
184489
|
};
|
|
184490
|
+
export type QueryAssetsVertical_CheckPermissionsArgs = {
|
|
184491
|
+
checks: Array<AssetsVerticalPermissionCheckInput>;
|
|
184492
|
+
cloudId: Scalars['ID']['input'];
|
|
184493
|
+
};
|
|
183456
184494
|
export type QueryAssetsVertical_ConfiguredObjectTypesArgs = {
|
|
183457
184495
|
cloudId: Scalars['ID']['input'];
|
|
183458
184496
|
input: AssetsVerticalObjectTypesInput;
|
|
@@ -183543,13 +184581,24 @@ export type QueryAssetsVertical_ModelObjectsArgs = {
|
|
|
183543
184581
|
input: AssetsVerticalModelObjectsInput;
|
|
183544
184582
|
};
|
|
183545
184583
|
export type QueryAssetsVertical_NonConfiguredAssetTypesTrackingsArgs = {
|
|
184584
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183546
184585
|
cloudId: Scalars['ID']['input'];
|
|
184586
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183547
184587
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
183548
184588
|
};
|
|
183549
184589
|
export type QueryAssetsVertical_NonConfiguredDepreciationRuleAssetTypesArgs = {
|
|
184590
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183550
184591
|
cloudId: Scalars['ID']['input'];
|
|
184592
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183551
184593
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
183552
184594
|
};
|
|
184595
|
+
export type QueryAssetsVertical_NonConfiguredItemMappingsArgs = {
|
|
184596
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
184597
|
+
cloudId: Scalars['ID']['input'];
|
|
184598
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
184599
|
+
spaceId: Scalars['ID']['input'];
|
|
184600
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
184601
|
+
};
|
|
183553
184602
|
export type QueryAssetsVertical_ObjectsArgs = {
|
|
183554
184603
|
cloudId: Scalars['ID']['input'];
|
|
183555
184604
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
@@ -183570,6 +184619,9 @@ export type QueryAssetsVertical_StockroomObjectsArgs = {
|
|
|
183570
184619
|
cloudId: Scalars['ID']['input'];
|
|
183571
184620
|
input: AssetsVerticalStockroomObjectsInput;
|
|
183572
184621
|
};
|
|
184622
|
+
export type QueryAssetsVertical_TenantContextArgs = {
|
|
184623
|
+
cloudId: Scalars['ID']['input'];
|
|
184624
|
+
};
|
|
183573
184625
|
export type QueryAssetsVertical_VerticalInstantiationArgs = {
|
|
183574
184626
|
cloudId: Scalars['ID']['input'];
|
|
183575
184627
|
id: Scalars['ID']['input'];
|
|
@@ -184365,10 +185417,6 @@ export type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
184365
185417
|
export type QueryConfluence_ContentsArgs = {
|
|
184366
185418
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
184367
185419
|
};
|
|
184368
|
-
export type QueryConfluence_ContextualTitleEmojiArgs = {
|
|
184369
|
-
pageAri: Scalars['ID']['input'];
|
|
184370
|
-
pageTitle: Scalars['String']['input'];
|
|
184371
|
-
};
|
|
184372
185420
|
export type QueryConfluence_CsvExportDownloadLinkArgs = {
|
|
184373
185421
|
cloudId: Scalars['ID']['input'];
|
|
184374
185422
|
taskId: Scalars['String']['input'];
|
|
@@ -186061,6 +187109,15 @@ export type QueryGetSummaryArgs = {
|
|
|
186061
187109
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
186062
187110
|
responseType?: InputMaybe<ResponseType>;
|
|
186063
187111
|
};
|
|
187112
|
+
export type QueryGlobalApp_ExtensionsByContextAriArgs = {
|
|
187113
|
+
contextAri: Scalars['ID']['input'];
|
|
187114
|
+
};
|
|
187115
|
+
export type QueryGlobalApp_ExtensionsByInstallationIdArgs = {
|
|
187116
|
+
installationId: Scalars['ID']['input'];
|
|
187117
|
+
};
|
|
187118
|
+
export type QueryGlobalApp_IsProductAdminArgs = {
|
|
187119
|
+
contextAri: Scalars['ID']['input'];
|
|
187120
|
+
};
|
|
186064
187121
|
export type QueryGoals_AllWatchedGoalUpdatesArgs = {
|
|
186065
187122
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
186066
187123
|
containerId: Scalars['ID']['input'];
|
|
@@ -202269,6 +203326,7 @@ export type QueryJira_IssueCreateLayoutArgs = {
|
|
|
202269
203326
|
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
202270
203327
|
project?: InputMaybe<JiraProjectInput>;
|
|
202271
203328
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
203329
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
202272
203330
|
};
|
|
202273
203331
|
export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
202274
203332
|
cloudId: Scalars['ID']['input'];
|
|
@@ -202276,6 +203334,7 @@ export type QueryJira_IssueCreateLayoutWithMlArgs = {
|
|
|
202276
203334
|
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
202277
203335
|
project?: InputMaybe<JiraProjectInput>;
|
|
202278
203336
|
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
203337
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
202279
203338
|
};
|
|
202280
203339
|
export type QueryJira_IssueSearchTopLevelIssueFieldsAggregationArgs = {
|
|
202281
203340
|
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
@@ -202511,6 +203570,10 @@ export type QueryJsmTelemetry_DashboardArgs = {
|
|
|
202511
203570
|
incidentId: Scalars['ID']['input'];
|
|
202512
203571
|
input: JsmTelemetryDashboardQueryInput;
|
|
202513
203572
|
};
|
|
203573
|
+
export type QueryJsmTelemetry_GetIncidentContextArgs = {
|
|
203574
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203575
|
+
incidentId: Scalars['ID']['input'];
|
|
203576
|
+
};
|
|
202514
203577
|
export type QueryJsmTelemetry_GetMetricAttributeValuesArgs = {
|
|
202515
203578
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202516
203579
|
incidentId: Scalars['ID']['input'];
|
|
@@ -202532,6 +203595,10 @@ export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
|
|
|
202532
203595
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202533
203596
|
id: Scalars['ID']['input'];
|
|
202534
203597
|
};
|
|
203598
|
+
export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
203599
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
203600
|
+
incidentId: Scalars['ID']['input'];
|
|
203601
|
+
};
|
|
202535
203602
|
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
202536
203603
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
202537
203604
|
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
@@ -202797,6 +203864,9 @@ export type QueryLoom_CreateSpaceArgs = {
|
|
|
202797
203864
|
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
202798
203865
|
siteId: Scalars['ID']['input'];
|
|
202799
203866
|
};
|
|
203867
|
+
export type QueryLoom_CurrentUserVideosArgs = {
|
|
203868
|
+
input: LoomCurrentUserVideosInput;
|
|
203869
|
+
};
|
|
202800
203870
|
export type QueryLoom_FoldersSearchArgs = {
|
|
202801
203871
|
includeDefaultFolders?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202802
203872
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -203198,6 +204268,7 @@ export type QueryProactiveAi_RovoInsightsStatusArgs = {
|
|
|
203198
204268
|
forceCacheMiss?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203199
204269
|
};
|
|
203200
204270
|
export type QueryProactiveAi_StratusTestInsightsArgs = {
|
|
204271
|
+
accountIdOverride?: InputMaybe<ProactiveAiStratusTestInsightsAccountIdOverride>;
|
|
203201
204272
|
cloudId: Scalars['ID']['input'];
|
|
203202
204273
|
variables?: InputMaybe<Array<InputMaybe<ProactiveAiStratusTestInsightsPromptVariable>>>;
|
|
203203
204274
|
};
|
|
@@ -203325,6 +204396,20 @@ export type QueryProjects_StatusSummaryForTagArgs = {
|
|
|
203325
204396
|
export type QueryProjects_UpdatesByIdsArgs = {
|
|
203326
204397
|
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
203327
204398
|
};
|
|
204399
|
+
export type QueryPsm_DeviceArgs = {
|
|
204400
|
+
cloudId: Scalars['ID']['input'];
|
|
204401
|
+
serialNumber: Scalars['String']['input'];
|
|
204402
|
+
};
|
|
204403
|
+
export type QueryPsm_DevicesArgs = {
|
|
204404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204405
|
+
cloudId: Scalars['ID']['input'];
|
|
204406
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204407
|
+
spaceId: Scalars['ID']['input'];
|
|
204408
|
+
};
|
|
204409
|
+
export type QueryPsm_OnboardTenantStatusArgs = {
|
|
204410
|
+
cloudId: Scalars['ID']['input'];
|
|
204411
|
+
input: PsmOnboardTenantStatusInput;
|
|
204412
|
+
};
|
|
203328
204413
|
export type QueryPtpageArgs = {
|
|
203329
204414
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
203330
204415
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -204681,6 +205766,12 @@ export type RadarCreateAiConnectorInput = {
|
|
|
204681
205766
|
provider: RadarAiConnectorProvider;
|
|
204682
205767
|
type: RadarAiConnectorType;
|
|
204683
205768
|
};
|
|
205769
|
+
export type RadarCreateSkillInput = {
|
|
205770
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
205771
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
205772
|
+
name: Scalars['String']['input'];
|
|
205773
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
205774
|
+
};
|
|
204684
205775
|
export type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
204685
205776
|
__typename?: 'RadarCustomFieldDefinition';
|
|
204686
205777
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -205266,6 +206357,7 @@ export type RadarSkill = Node & {
|
|
|
205266
206357
|
name: Scalars['String']['output'];
|
|
205267
206358
|
parent?: Maybe<RadarSkill>;
|
|
205268
206359
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
206360
|
+
pathIds: Array<Scalars['ID']['output']>;
|
|
205269
206361
|
updatedAt: Scalars['DateTime']['output'];
|
|
205270
206362
|
};
|
|
205271
206363
|
export type RadarSkillAssignmentInput = {
|
|
@@ -205417,6 +206509,15 @@ export type RadarUpdateSkillInput = {
|
|
|
205417
206509
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
205418
206510
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
205419
206511
|
};
|
|
206512
|
+
export type RadarUpsertAiScopedBudgetPoliciesInput = {
|
|
206513
|
+
deletedScopeFieldValues: Array<Scalars['String']['input']>;
|
|
206514
|
+
upserts: Array<RadarUpsertAiScopedBudgetPolicyInput>;
|
|
206515
|
+
};
|
|
206516
|
+
export type RadarUpsertAiScopedBudgetPoliciesPayload = {
|
|
206517
|
+
__typename?: 'RadarUpsertAiScopedBudgetPoliciesPayload';
|
|
206518
|
+
deletedScopeFieldValues: Array<Scalars['String']['output']>;
|
|
206519
|
+
policies: Array<RadarAiScopedBudgetPolicy>;
|
|
206520
|
+
};
|
|
205420
206521
|
export type RadarUpsertAiScopedBudgetPolicyInput = {
|
|
205421
206522
|
allowanceAmount: Scalars['Int']['input'];
|
|
205422
206523
|
scopeFieldValue: Scalars['String']['input'];
|
|
@@ -228477,9 +229578,16 @@ export type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
|
228477
229578
|
export type SmartsRecommendedUser = {
|
|
228478
229579
|
__typename?: 'SmartsRecommendedUser';
|
|
228479
229580
|
id: Scalars['ID']['output'];
|
|
229581
|
+
linkedThirdPartyUsers?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
228480
229582
|
score?: Maybe<Scalars['Float']['output']>;
|
|
228481
229583
|
user?: Maybe<User>;
|
|
228482
229584
|
};
|
|
229585
|
+
export type SmartsRecommendedUserLinkedThirdPartyUsersArgs = {
|
|
229586
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
229587
|
+
filter?: InputMaybe<GraphStoreUserLinkedThirdPartyUserFilterInput>;
|
|
229588
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
229589
|
+
sort?: InputMaybe<GraphStoreUserLinkedThirdPartyUserSortInput>;
|
|
229590
|
+
};
|
|
228483
229591
|
export type SmartsThirdPartyContext = {
|
|
228484
229592
|
__typename?: 'SmartsThirdPartyContext';
|
|
228485
229593
|
ari: Scalars['ID']['output'];
|
|
@@ -232398,10 +233506,10 @@ export type Subscription = {
|
|
|
232398
233506
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
232399
233507
|
postOffice_onMessageReceived?: Maybe<PostOfficeMessagePayload>;
|
|
232400
233508
|
postOffice_onMessageReceivedEnriched?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
233509
|
+
psm_dummy?: Maybe<Scalars['String']['output']>;
|
|
232401
233510
|
sandbox: SandboxSubscription;
|
|
232402
233511
|
signup: SignupSubscriptionApi;
|
|
232403
233512
|
spf_onPlanUpdate?: Maybe<SpfPlan>;
|
|
232404
|
-
stakeholderComms_opsgenieRiskAssesmentOnUpdate?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
232405
233513
|
testing?: Maybe<TestingSubscription>;
|
|
232406
233514
|
trello: TrelloSubscriptionApi;
|
|
232407
233515
|
};
|
|
@@ -232538,9 +233646,6 @@ export type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
|
232538
233646
|
export type SubscriptionSpf_OnPlanUpdateArgs = {
|
|
232539
233647
|
id: Scalars['ID']['input'];
|
|
232540
233648
|
};
|
|
232541
|
-
export type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
232542
|
-
changeRequestId: Scalars['ID']['input'];
|
|
232543
|
-
};
|
|
232544
233649
|
export declare enum SummaryType {
|
|
232545
233650
|
Blogpost = "BLOGPOST",
|
|
232546
233651
|
Page = "PAGE"
|
|
@@ -235033,6 +236138,7 @@ export type TownsquareCreateGoalInput = {
|
|
|
235033
236138
|
name: Scalars['String']['input'];
|
|
235034
236139
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
235035
236140
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
236141
|
+
subGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
235036
236142
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
235037
236143
|
};
|
|
235038
236144
|
export type TownsquareCreateGoalPayload = {
|
|
@@ -236165,6 +237271,7 @@ export type TownsquareGoalsCreateInput = {
|
|
|
236165
237271
|
name: Scalars['String']['input'];
|
|
236166
237272
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
236167
237273
|
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
237274
|
+
subGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
236168
237275
|
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
236169
237276
|
};
|
|
236170
237277
|
export type TownsquareGoalsCreateLearningInput = {
|
|
@@ -236981,6 +238088,7 @@ export type TownsquareMetricUpdateInput = {
|
|
|
236981
238088
|
export type TownsquareMetricValue = Node & {
|
|
236982
238089
|
__typename?: 'TownsquareMetricValue';
|
|
236983
238090
|
canDelete?: Maybe<Scalars['Boolean']['output']>;
|
|
238091
|
+
creator?: Maybe<User>;
|
|
236984
238092
|
id: Scalars['ID']['output'];
|
|
236985
238093
|
origin?: Maybe<TownsquareMetricValueOrigin>;
|
|
236986
238094
|
time?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -238256,6 +239364,17 @@ export type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
|
238256
239364
|
success: Scalars['Boolean']['output'];
|
|
238257
239365
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
238258
239366
|
};
|
|
239367
|
+
export type TownsquareProjectsRemoveWatchersInput = {
|
|
239368
|
+
projectId: Scalars['ID']['input'];
|
|
239369
|
+
watcherIds: Array<Scalars['ID']['input']>;
|
|
239370
|
+
};
|
|
239371
|
+
export type TownsquareProjectsRemoveWatchersPayload = {
|
|
239372
|
+
__typename?: 'TownsquareProjectsRemoveWatchersPayload';
|
|
239373
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239374
|
+
project?: Maybe<TownsquareProject>;
|
|
239375
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
239376
|
+
success: Scalars['Boolean']['output'];
|
|
239377
|
+
};
|
|
238259
239378
|
export type TownsquareProjectsSetDefaultAccessLevelInput = {
|
|
238260
239379
|
accessLevel: TownsquareProjectAccessLevel;
|
|
238261
239380
|
containerId: Scalars['ID']['input'];
|
|
@@ -239355,6 +240474,31 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
239355
240474
|
__typename?: 'TrelloAdministeredPaidWorkspacesUpdated';
|
|
239356
240475
|
id: Scalars['ID']['output'];
|
|
239357
240476
|
};
|
|
240477
|
+
export type TrelloAgentTask = {
|
|
240478
|
+
__typename?: 'TrelloAgentTask';
|
|
240479
|
+
id: Scalars['ID']['output'];
|
|
240480
|
+
key: Scalars['String']['output'];
|
|
240481
|
+
objectId: Scalars['ID']['output'];
|
|
240482
|
+
status: TrelloAgentTaskStatus;
|
|
240483
|
+
};
|
|
240484
|
+
export declare enum TrelloAgentTaskState {
|
|
240485
|
+
ApprovalRequired = "APPROVAL_REQUIRED",
|
|
240486
|
+
AuthRequired = "AUTH_REQUIRED",
|
|
240487
|
+
Canceled = "CANCELED",
|
|
240488
|
+
Completed = "COMPLETED",
|
|
240489
|
+
Failed = "FAILED",
|
|
240490
|
+
InputRequired = "INPUT_REQUIRED",
|
|
240491
|
+
Rejected = "REJECTED",
|
|
240492
|
+
Submitted = "SUBMITTED",
|
|
240493
|
+
Unspecified = "UNSPECIFIED",
|
|
240494
|
+
Working = "WORKING"
|
|
240495
|
+
}
|
|
240496
|
+
export type TrelloAgentTaskStatus = {
|
|
240497
|
+
__typename?: 'TrelloAgentTaskStatus';
|
|
240498
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
240499
|
+
state: TrelloAgentTaskState;
|
|
240500
|
+
timestamp: Scalars['DateTime']['output'];
|
|
240501
|
+
};
|
|
239358
240502
|
export type TrelloAgenticActivity = {
|
|
239359
240503
|
__typename?: 'TrelloAgenticActivity';
|
|
239360
240504
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -239462,6 +240606,80 @@ export declare enum TrelloAiFeatureEntityAction {
|
|
|
239462
240606
|
Create = "CREATE",
|
|
239463
240607
|
Update = "UPDATE"
|
|
239464
240608
|
}
|
|
240609
|
+
export type TrelloAiInterjectionParameterOverrides = {
|
|
240610
|
+
__typename?: 'TrelloAiInterjectionParameterOverrides';
|
|
240611
|
+
maximumTokens?: Maybe<Scalars['Int']['output']>;
|
|
240612
|
+
reasoningEffort?: Maybe<TrelloAiReasoningEffort>;
|
|
240613
|
+
temperature?: Maybe<Scalars['Float']['output']>;
|
|
240614
|
+
timeoutSeconds?: Maybe<Scalars['Int']['output']>;
|
|
240615
|
+
topP?: Maybe<Scalars['Float']['output']>;
|
|
240616
|
+
};
|
|
240617
|
+
export type TrelloAiInterjectionParameterOverridesInput = {
|
|
240618
|
+
maximumTokens?: InputMaybe<Scalars['Int']['input']>;
|
|
240619
|
+
reasoningEffort?: InputMaybe<TrelloAiReasoningEffort>;
|
|
240620
|
+
temperature?: InputMaybe<Scalars['Float']['input']>;
|
|
240621
|
+
timeoutSeconds?: InputMaybe<Scalars['Int']['input']>;
|
|
240622
|
+
topP?: InputMaybe<Scalars['Float']['input']>;
|
|
240623
|
+
};
|
|
240624
|
+
export type TrelloAiModelConfig = {
|
|
240625
|
+
__typename?: 'TrelloAiModelConfig';
|
|
240626
|
+
maximumTokens?: Maybe<Scalars['Int']['output']>;
|
|
240627
|
+
responseFormat?: Maybe<Scalars['String']['output']>;
|
|
240628
|
+
temperature?: Maybe<Scalars['Float']['output']>;
|
|
240629
|
+
topP?: Maybe<Scalars['Float']['output']>;
|
|
240630
|
+
};
|
|
240631
|
+
export type TrelloAiModelMetadata = {
|
|
240632
|
+
__typename?: 'TrelloAiModelMetadata';
|
|
240633
|
+
capabilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
240634
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
240635
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
240636
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
240637
|
+
provider?: Maybe<Scalars['String']['output']>;
|
|
240638
|
+
};
|
|
240639
|
+
export type TrelloAiPromptConfig = {
|
|
240640
|
+
__typename?: 'TrelloAiPromptConfig';
|
|
240641
|
+
feature?: Maybe<Scalars['String']['output']>;
|
|
240642
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
240643
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
240644
|
+
modelConfiguration?: Maybe<TrelloAiModelConfig>;
|
|
240645
|
+
systemPrompt?: Maybe<Scalars['String']['output']>;
|
|
240646
|
+
tools?: Maybe<Scalars['JSON']['output']>;
|
|
240647
|
+
useCaseId?: Maybe<Scalars['String']['output']>;
|
|
240648
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
240649
|
+
};
|
|
240650
|
+
export type TrelloAiPromptInterjectionContract = {
|
|
240651
|
+
__typename?: 'TrelloAiPromptInterjectionContract';
|
|
240652
|
+
definitions?: Maybe<Array<TrelloAiPromptInterjectionDefinition>>;
|
|
240653
|
+
models?: Maybe<Array<TrelloAiModelMetadata>>;
|
|
240654
|
+
overrideSchema?: Maybe<Scalars['JSON']['output']>;
|
|
240655
|
+
};
|
|
240656
|
+
export type TrelloAiPromptInterjectionDefinition = {
|
|
240657
|
+
__typename?: 'TrelloAiPromptInterjectionDefinition';
|
|
240658
|
+
currentPrompt?: Maybe<TrelloAiPromptConfig>;
|
|
240659
|
+
promptType?: Maybe<Scalars['String']['output']>;
|
|
240660
|
+
};
|
|
240661
|
+
export type TrelloAiPromptInterjectionOverride = {
|
|
240662
|
+
__typename?: 'TrelloAiPromptInterjectionOverride';
|
|
240663
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
240664
|
+
modelId?: Maybe<Scalars['String']['output']>;
|
|
240665
|
+
parameters?: Maybe<TrelloAiInterjectionParameterOverrides>;
|
|
240666
|
+
promptType: Scalars['String']['output'];
|
|
240667
|
+
systemPrompt?: Maybe<Scalars['String']['output']>;
|
|
240668
|
+
};
|
|
240669
|
+
export type TrelloAiPromptInterjectionOverrideInput = {
|
|
240670
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
240671
|
+
modelId?: InputMaybe<Scalars['String']['input']>;
|
|
240672
|
+
parameters?: InputMaybe<TrelloAiInterjectionParameterOverridesInput>;
|
|
240673
|
+
promptType: Scalars['String']['input'];
|
|
240674
|
+
systemPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
240675
|
+
};
|
|
240676
|
+
export declare enum TrelloAiReasoningEffort {
|
|
240677
|
+
High = "HIGH",
|
|
240678
|
+
Low = "LOW",
|
|
240679
|
+
Medium = "MEDIUM",
|
|
240680
|
+
Minimal = "MINIMAL",
|
|
240681
|
+
None = "NONE"
|
|
240682
|
+
}
|
|
239465
240683
|
export type TrelloAiRule = {
|
|
239466
240684
|
__typename?: 'TrelloAiRule';
|
|
239467
240685
|
id: Scalars['ID']['output'];
|
|
@@ -241117,6 +242335,18 @@ export type TrelloCopyCardActionDisplayEntities = {
|
|
|
241117
242335
|
list?: Maybe<TrelloActionListEntity>;
|
|
241118
242336
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
241119
242337
|
};
|
|
242338
|
+
export type TrelloCopyCardInput = {
|
|
242339
|
+
cardId: Scalars['ID']['input'];
|
|
242340
|
+
listId?: InputMaybe<Scalars['ID']['input']>;
|
|
242341
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
242342
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
242343
|
+
};
|
|
242344
|
+
export type TrelloCopyCardPayload = Payload & {
|
|
242345
|
+
__typename?: 'TrelloCopyCardPayload';
|
|
242346
|
+
card?: Maybe<TrelloBaseCard>;
|
|
242347
|
+
errors?: Maybe<Array<MutationError>>;
|
|
242348
|
+
success: Scalars['Boolean']['output'];
|
|
242349
|
+
};
|
|
241120
242350
|
export type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
241121
242351
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
241122
242352
|
agenticIdentity?: Maybe<TrelloAgenticIdentity>;
|
|
@@ -241209,6 +242439,7 @@ export type TrelloCreateBoardWithAiPayload = Payload & {
|
|
|
241209
242439
|
boardV2?: Maybe<TrelloBaseBoard>;
|
|
241210
242440
|
errors?: Maybe<Array<MutationError>>;
|
|
241211
242441
|
success: Scalars['Boolean']['output'];
|
|
242442
|
+
task?: Maybe<TrelloAgentTask>;
|
|
241212
242443
|
};
|
|
241213
242444
|
export type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
241214
242445
|
__typename?: 'TrelloCreateCardAction';
|
|
@@ -241827,6 +243058,11 @@ export type TrelloEnterprisePrefs = {
|
|
|
241827
243058
|
__typename?: 'TrelloEnterprisePrefs';
|
|
241828
243059
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
241829
243060
|
};
|
|
243061
|
+
export type TrelloExistingLabelSuggestion = {
|
|
243062
|
+
__typename?: 'TrelloExistingLabelSuggestion';
|
|
243063
|
+
label?: Maybe<TrelloLabel>;
|
|
243064
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
243065
|
+
};
|
|
241830
243066
|
export type TrelloGenerateBoardBackgroundJob = TrelloJob & {
|
|
241831
243067
|
__typename?: 'TrelloGenerateBoardBackgroundJob';
|
|
241832
243068
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -242871,6 +244107,7 @@ export type TrelloMutationApi = {
|
|
|
242871
244107
|
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
242872
244108
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
242873
244109
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
244110
|
+
copyCard?: Maybe<TrelloCopyCardPayload>;
|
|
242874
244111
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
242875
244112
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
242876
244113
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
@@ -242933,12 +244170,15 @@ export type TrelloMutationApi = {
|
|
|
242933
244170
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
242934
244171
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
242935
244172
|
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
244173
|
+
researchCardWithAi?: Maybe<TrelloResearchCardWithAiPayload>;
|
|
242936
244174
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
244175
|
+
resetMemberAiImageGenerationUsage?: Maybe<TrelloResetMemberAiImageGenerationUsagePayload>;
|
|
242937
244176
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
242938
244177
|
revokeMemberOAuth2AccessGrants?: Maybe<TrelloRevokeMemberOAuth2AccessGrantsPayload>;
|
|
242939
244178
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
242940
244179
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
242941
244180
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
244181
|
+
setAiPromptInterjectionOverrides?: Maybe<TrelloSetAiPromptInterjectionOverridesPayload>;
|
|
242942
244182
|
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
242943
244183
|
setPlannerBoardOverride?: Maybe<TrelloSetPlannerBoardOverridePayload>;
|
|
242944
244184
|
showCardCoversOnCardFront?: Maybe<TrelloShowCardCoversOnCardFrontPayload>;
|
|
@@ -242946,6 +244186,8 @@ export type TrelloMutationApi = {
|
|
|
242946
244186
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
242947
244187
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
242948
244188
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
244189
|
+
suggestExistingLabelsForCard?: Maybe<TrelloSuggestExistingLabelsForCardPayload>;
|
|
244190
|
+
suggestNewLabelsForCard?: Maybe<TrelloSuggestNewLabelsForCardPayload>;
|
|
242949
244191
|
toggleLabsFeatureForMember?: Maybe<TrelloToggleLabsFeatureForMemberPayload>;
|
|
242950
244192
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
242951
244193
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -243046,6 +244288,9 @@ export type TrelloMutationApiConvertBoardToTemplateArgs = {
|
|
|
243046
244288
|
export type TrelloMutationApiConvertTemplateToBoardArgs = {
|
|
243047
244289
|
input: TrelloConvertTemplateToBoardInput;
|
|
243048
244290
|
};
|
|
244291
|
+
export type TrelloMutationApiCopyCardArgs = {
|
|
244292
|
+
input: TrelloCopyCardInput;
|
|
244293
|
+
};
|
|
243049
244294
|
export type TrelloMutationApiCreateApplicationArgs = {
|
|
243050
244295
|
input: TrelloCreateApplicationInput;
|
|
243051
244296
|
};
|
|
@@ -243229,6 +244474,9 @@ export type TrelloMutationApiReopenBoardArgs = {
|
|
|
243229
244474
|
export type TrelloMutationApiReopenCardArgs = {
|
|
243230
244475
|
input: TrelloReopenCardInput;
|
|
243231
244476
|
};
|
|
244477
|
+
export type TrelloMutationApiResearchCardWithAiArgs = {
|
|
244478
|
+
input: TrelloResearchCardWithAiInput;
|
|
244479
|
+
};
|
|
243232
244480
|
export type TrelloMutationApiResetCardCoverArgs = {
|
|
243233
244481
|
input: TrelloResetCardCoverInput;
|
|
243234
244482
|
};
|
|
@@ -243244,6 +244492,9 @@ export type TrelloMutationApiRotateOAuth2ClientSecretArgs = {
|
|
|
243244
244492
|
export type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
243245
244493
|
input?: InputMaybe<TrelloSendBoardEmailKeyInput>;
|
|
243246
244494
|
};
|
|
244495
|
+
export type TrelloMutationApiSetAiPromptInterjectionOverridesArgs = {
|
|
244496
|
+
input: TrelloSetAiPromptInterjectionOverridesInput;
|
|
244497
|
+
};
|
|
243247
244498
|
export type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
243248
244499
|
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
243249
244500
|
};
|
|
@@ -243265,6 +244516,12 @@ export type TrelloMutationApiSortListCardsArgs = {
|
|
|
243265
244516
|
export type TrelloMutationApiSubmitCardBatchToBoardArgs = {
|
|
243266
244517
|
input: TrelloCardBatchSpecificationInput;
|
|
243267
244518
|
};
|
|
244519
|
+
export type TrelloMutationApiSuggestExistingLabelsForCardArgs = {
|
|
244520
|
+
input: TrelloSuggestExistingLabelsForCardInput;
|
|
244521
|
+
};
|
|
244522
|
+
export type TrelloMutationApiSuggestNewLabelsForCardArgs = {
|
|
244523
|
+
input: TrelloSuggestNewLabelsForCardInput;
|
|
244524
|
+
};
|
|
243268
244525
|
export type TrelloMutationApiToggleLabsFeatureForMemberArgs = {
|
|
243269
244526
|
input: TrelloToggleLabsFeatureForMemberInput;
|
|
243270
244527
|
};
|
|
@@ -243418,6 +244675,12 @@ export type TrelloNewCustomFieldOptionInput = {
|
|
|
243418
244675
|
position?: InputMaybe<Scalars['Float']['input']>;
|
|
243419
244676
|
value: TrelloCustomFieldOptionValueInput;
|
|
243420
244677
|
};
|
|
244678
|
+
export type TrelloNewLabelSuggestion = {
|
|
244679
|
+
__typename?: 'TrelloNewLabelSuggestion';
|
|
244680
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
244681
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
244682
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
244683
|
+
};
|
|
243421
244684
|
export type TrelloNewYearsResolutionAiBoardInput = {
|
|
243422
244685
|
resolution: Scalars['String']['input'];
|
|
243423
244686
|
};
|
|
@@ -244335,6 +245598,8 @@ export type TrelloProviderCalendarInterface = {
|
|
|
244335
245598
|
};
|
|
244336
245599
|
export type TrelloQueryApi = {
|
|
244337
245600
|
__typename?: 'TrelloQueryApi';
|
|
245601
|
+
aiPromptInterjectionContract?: Maybe<TrelloAiPromptInterjectionContract>;
|
|
245602
|
+
aiPromptInterjectionOverrides?: Maybe<Array<TrelloAiPromptInterjectionOverride>>;
|
|
244338
245603
|
application?: Maybe<TrelloApplication>;
|
|
244339
245604
|
archivedCards?: Maybe<TrelloArchivedCardConnection>;
|
|
244340
245605
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
@@ -244725,6 +245990,26 @@ export type TrelloReopenCardPayload = Payload & {
|
|
|
244725
245990
|
errors?: Maybe<Array<MutationError>>;
|
|
244726
245991
|
success: Scalars['Boolean']['output'];
|
|
244727
245992
|
};
|
|
245993
|
+
export type TrelloResearchCardSuggestedLink = {
|
|
245994
|
+
__typename?: 'TrelloResearchCardSuggestedLink';
|
|
245995
|
+
reason: Scalars['String']['output'];
|
|
245996
|
+
title: Scalars['String']['output'];
|
|
245997
|
+
url: Scalars['String']['output'];
|
|
245998
|
+
};
|
|
245999
|
+
export type TrelloResearchCardWithAiInput = {
|
|
246000
|
+
cardId: Scalars['ID']['input'];
|
|
246001
|
+
};
|
|
246002
|
+
export type TrelloResearchCardWithAiPayload = Payload & {
|
|
246003
|
+
__typename?: 'TrelloResearchCardWithAiPayload';
|
|
246004
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246005
|
+
result?: Maybe<TrelloResearchCardWithAiResult>;
|
|
246006
|
+
success: Scalars['Boolean']['output'];
|
|
246007
|
+
};
|
|
246008
|
+
export type TrelloResearchCardWithAiResult = {
|
|
246009
|
+
__typename?: 'TrelloResearchCardWithAiResult';
|
|
246010
|
+
suggestedLinks: Array<TrelloResearchCardSuggestedLink>;
|
|
246011
|
+
summary: Scalars['String']['output'];
|
|
246012
|
+
};
|
|
244728
246013
|
export type TrelloResetCardCoverInput = {
|
|
244729
246014
|
cardId: Scalars['ID']['input'];
|
|
244730
246015
|
};
|
|
@@ -244734,6 +246019,12 @@ export type TrelloResetCardCoverPayload = Payload & {
|
|
|
244734
246019
|
errors?: Maybe<Array<MutationError>>;
|
|
244735
246020
|
success: Scalars['Boolean']['output'];
|
|
244736
246021
|
};
|
|
246022
|
+
export type TrelloResetMemberAiImageGenerationUsagePayload = Payload & {
|
|
246023
|
+
__typename?: 'TrelloResetMemberAiImageGenerationUsagePayload';
|
|
246024
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246025
|
+
success: Scalars['Boolean']['output'];
|
|
246026
|
+
usageLimits?: Maybe<Array<TrelloUsageLimit>>;
|
|
246027
|
+
};
|
|
244737
246028
|
export type TrelloRetryAiOnBoardInput = {
|
|
244738
246029
|
boardId: Scalars['ID']['input'];
|
|
244739
246030
|
userInput: TrelloAiBoardUserInput;
|
|
@@ -244806,6 +246097,14 @@ export type TrelloSendBoardEmailKeyMessagePayload = Payload & {
|
|
|
244806
246097
|
errors?: Maybe<Array<MutationError>>;
|
|
244807
246098
|
success: Scalars['Boolean']['output'];
|
|
244808
246099
|
};
|
|
246100
|
+
export type TrelloSetAiPromptInterjectionOverridesInput = {
|
|
246101
|
+
overrides: Array<TrelloAiPromptInterjectionOverrideInput>;
|
|
246102
|
+
};
|
|
246103
|
+
export type TrelloSetAiPromptInterjectionOverridesPayload = Payload & {
|
|
246104
|
+
__typename?: 'TrelloSetAiPromptInterjectionOverridesPayload';
|
|
246105
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246106
|
+
success: Scalars['Boolean']['output'];
|
|
246107
|
+
};
|
|
244809
246108
|
export type TrelloSetBoardBackgroundFromImageUrlInput = {
|
|
244810
246109
|
boardId: Scalars['ID']['input'];
|
|
244811
246110
|
url: Scalars['String']['input'];
|
|
@@ -244967,6 +246266,24 @@ export type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
|
244967
246266
|
id: Scalars['ID']['input'];
|
|
244968
246267
|
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
244969
246268
|
};
|
|
246269
|
+
export type TrelloSuggestExistingLabelsForCardInput = {
|
|
246270
|
+
cardId: Scalars['ID']['input'];
|
|
246271
|
+
};
|
|
246272
|
+
export type TrelloSuggestExistingLabelsForCardPayload = Payload & {
|
|
246273
|
+
__typename?: 'TrelloSuggestExistingLabelsForCardPayload';
|
|
246274
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246275
|
+
success: Scalars['Boolean']['output'];
|
|
246276
|
+
suggestedLabels?: Maybe<Array<TrelloExistingLabelSuggestion>>;
|
|
246277
|
+
};
|
|
246278
|
+
export type TrelloSuggestNewLabelsForCardInput = {
|
|
246279
|
+
cardId: Scalars['ID']['input'];
|
|
246280
|
+
};
|
|
246281
|
+
export type TrelloSuggestNewLabelsForCardPayload = Payload & {
|
|
246282
|
+
__typename?: 'TrelloSuggestNewLabelsForCardPayload';
|
|
246283
|
+
errors?: Maybe<Array<MutationError>>;
|
|
246284
|
+
success: Scalars['Boolean']['output'];
|
|
246285
|
+
suggestedLabels?: Maybe<Array<TrelloNewLabelSuggestion>>;
|
|
246286
|
+
};
|
|
244970
246287
|
export declare enum TrelloSupportedPlannerProviders {
|
|
244971
246288
|
Google = "GOOGLE",
|
|
244972
246289
|
Outlook = "OUTLOOK"
|
|
@@ -245699,6 +247016,7 @@ export type TrelloUserUnrestrictedAccessSummary = {
|
|
|
245699
247016
|
};
|
|
245700
247017
|
export type TrelloVoiceCaptureCardUpdated = {
|
|
245701
247018
|
__typename?: 'TrelloVoiceCaptureCardUpdated';
|
|
247019
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
245702
247020
|
due?: Maybe<Scalars['DateTime']['output']>;
|
|
245703
247021
|
name?: Maybe<Scalars['String']['output']>;
|
|
245704
247022
|
objectId: Scalars['ID']['output'];
|