@forge/cli-shared 8.23.0 → 8.23.1-next.1
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 +15 -0
- package/out/graphql/graphql-types.d.ts +993 -75
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +143 -46
- package/package.json +2 -2
|
@@ -149,10 +149,6 @@ export declare type AiOpsAutomationRuleUserPrompt = {
|
|
|
149
149
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
150
150
|
variableName?: Maybe<Scalars['String']['output']>;
|
|
151
151
|
};
|
|
152
|
-
export declare type AiOpsCreateInvestigationInput = {
|
|
153
|
-
affectedServiceIds: Array<Scalars['ID']['input']>;
|
|
154
|
-
issueId: Scalars['ID']['input'];
|
|
155
|
-
};
|
|
156
152
|
export declare type AiOpsCreateInvestigationPayload = Payload & {
|
|
157
153
|
__typename?: 'AIOpsCreateInvestigationPayload';
|
|
158
154
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -166,6 +162,7 @@ export declare type AiOpsEntityCount = {
|
|
|
166
162
|
};
|
|
167
163
|
export declare type AiOpsFaultyChange = {
|
|
168
164
|
__typename?: 'AIOpsFaultyChange';
|
|
165
|
+
associations?: Maybe<Array<AiOpsFaultyChange>>;
|
|
169
166
|
attributes?: Maybe<AiOpsFaultyChangeAttributes>;
|
|
170
167
|
changeId?: Maybe<Scalars['String']['output']>;
|
|
171
168
|
relatedWorkItems?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -180,8 +177,8 @@ export declare type AiOpsFaultyChangeAttributes = {
|
|
|
180
177
|
export declare enum AiOpsFaultyChangeType {
|
|
181
178
|
Commit = "COMMIT",
|
|
182
179
|
Deployment = "DEPLOYMENT",
|
|
183
|
-
|
|
184
|
-
|
|
180
|
+
Ff = "FF",
|
|
181
|
+
Pr = "PR"
|
|
185
182
|
}
|
|
186
183
|
export declare type AiOpsFaultyCommitAttributes = AiOpsFaultyChangeAttributes & {
|
|
187
184
|
__typename?: 'AIOpsFaultyCommitAttributes';
|
|
@@ -1059,7 +1056,7 @@ export declare type AvpAnalyticsMetricFilter = {
|
|
|
1059
1056
|
export declare type AvpAnalyticsMetricFilterInput = {
|
|
1060
1057
|
columnId: Scalars['ID']['input'];
|
|
1061
1058
|
operator: AvpAnalyticsFilterOperator;
|
|
1062
|
-
value
|
|
1059
|
+
value?: InputMaybe<AvpAnalyticsFilterValueInput>;
|
|
1063
1060
|
};
|
|
1064
1061
|
export declare type AvpAnalyticsMetricMetadata = {
|
|
1065
1062
|
__typename?: 'AVPAnalyticsMetricMetadata';
|
|
@@ -1255,7 +1252,7 @@ export declare type AvpAnalyticsPreviewMetricDataInput = {
|
|
|
1255
1252
|
defaultVisualization?: InputMaybe<AvpAnalyticsVisualizationConfigInput>;
|
|
1256
1253
|
metricCloudId: Scalars['ID']['input'];
|
|
1257
1254
|
metricDefinition: AvpAnalyticsMetricDefinitionInput;
|
|
1258
|
-
metricId
|
|
1255
|
+
metricId?: InputMaybe<Scalars['ID']['input']>;
|
|
1259
1256
|
};
|
|
1260
1257
|
export declare type AvpAnalyticsPreviewModelDataInput = {
|
|
1261
1258
|
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -1809,6 +1806,7 @@ export declare type AvpDashboardFilterInput = {
|
|
|
1809
1806
|
export declare type AvpDashboardIdentityAccess = {
|
|
1810
1807
|
__typename?: 'AVPDashboardIdentityAccess';
|
|
1811
1808
|
dashboardId: Scalars['ID']['output'];
|
|
1809
|
+
groups: Array<AvpDashboardIdentityGroupAccess>;
|
|
1812
1810
|
users: Array<AvpDashboardIdentityUserAccess>;
|
|
1813
1811
|
};
|
|
1814
1812
|
export declare enum AvpDashboardIdentityAccessLevel {
|
|
@@ -1816,10 +1814,17 @@ export declare enum AvpDashboardIdentityAccessLevel {
|
|
|
1816
1814
|
Read = "READ",
|
|
1817
1815
|
Write = "WRITE"
|
|
1818
1816
|
}
|
|
1817
|
+
export declare type AvpDashboardIdentityGroupAccess = {
|
|
1818
|
+
__typename?: 'AVPDashboardIdentityGroupAccess';
|
|
1819
|
+
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1820
|
+
group?: Maybe<IdentityGroup>;
|
|
1821
|
+
principalId: Scalars['ID']['output'];
|
|
1822
|
+
};
|
|
1819
1823
|
export declare type AvpDashboardIdentityUserAccess = {
|
|
1820
1824
|
__typename?: 'AVPDashboardIdentityUserAccess';
|
|
1821
1825
|
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1822
1826
|
principalId: Scalars['ID']['output'];
|
|
1827
|
+
user?: Maybe<User>;
|
|
1823
1828
|
};
|
|
1824
1829
|
export declare type AvpDashboardInput = {
|
|
1825
1830
|
category?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1830,8 +1835,16 @@ export declare type AvpDashboardInput = {
|
|
|
1830
1835
|
export declare enum AvpDashboardPermissionType {
|
|
1831
1836
|
Closed = "CLOSED",
|
|
1832
1837
|
Manage = "MANAGE",
|
|
1833
|
-
Read = "READ"
|
|
1838
|
+
Read = "READ",
|
|
1839
|
+
Write = "WRITE"
|
|
1834
1840
|
}
|
|
1841
|
+
export declare type AvpDashboardResourcePermission = {
|
|
1842
|
+
__typename?: 'AVPDashboardResourcePermission';
|
|
1843
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
1844
|
+
dashboardId: Scalars['ID']['output'];
|
|
1845
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
1846
|
+
permissionType?: Maybe<AvpDashboardPermissionType>;
|
|
1847
|
+
};
|
|
1835
1848
|
export declare type AvpDashboardSettings = {
|
|
1836
1849
|
__typename?: 'AVPDashboardSettings';
|
|
1837
1850
|
allowTzOverride?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2031,6 +2044,15 @@ export declare type AvpGetDashboardIdBySlugPayload = {
|
|
|
2031
2044
|
__typename?: 'AVPGetDashboardIdBySlugPayload';
|
|
2032
2045
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2033
2046
|
};
|
|
2047
|
+
export declare type AvpGetDashboardIdentityAccessInput = {
|
|
2048
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2049
|
+
directAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2050
|
+
includeGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2051
|
+
permissions?: InputMaybe<Array<AvpDashboardIdentityAccessLevel>>;
|
|
2052
|
+
};
|
|
2053
|
+
export declare type AvpGetDashboardResourcePermissionInput = {
|
|
2054
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2055
|
+
};
|
|
2034
2056
|
export declare type AvpGetDashboardTemplatesInput = {
|
|
2035
2057
|
cloudId: Scalars['ID']['input'];
|
|
2036
2058
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -5526,6 +5548,7 @@ export declare type AgentStudioAssistantMessage = {
|
|
|
5526
5548
|
author?: Maybe<AgentStudioMessageAuthor>;
|
|
5527
5549
|
content?: Maybe<AgentStudioMessageContent>;
|
|
5528
5550
|
contentMimeType?: Maybe<Scalars['String']['output']>;
|
|
5551
|
+
feedbackValue?: Maybe<AgentStudioFeedbackValue>;
|
|
5529
5552
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5530
5553
|
role?: Maybe<Scalars['String']['output']>;
|
|
5531
5554
|
sources?: Maybe<Array<Maybe<AgentStudioMessageSource>>>;
|
|
@@ -5986,6 +6009,10 @@ export declare type AgentStudioExecutionTierConfig = {
|
|
|
5986
6009
|
models?: Maybe<Array<AgentStudioAvailableModelConfig>>;
|
|
5987
6010
|
supportsModelSelection?: Maybe<Scalars['Boolean']['output']>;
|
|
5988
6011
|
};
|
|
6012
|
+
export declare enum AgentStudioFeedbackValue {
|
|
6013
|
+
Dislike = "DISLIKE",
|
|
6014
|
+
Like = "LIKE"
|
|
6015
|
+
}
|
|
5989
6016
|
export declare enum AgentStudioFirstPartyAccessStatus {
|
|
5990
6017
|
HasAccess = "HAS_ACCESS",
|
|
5991
6018
|
NoAccess = "NO_ACCESS",
|
|
@@ -6984,9 +7011,9 @@ export declare type AgentWorkspaceAssignAgentToGapInput = {
|
|
|
6984
7011
|
assignedAgentId: Scalars['ID']['input'];
|
|
6985
7012
|
endTime: Scalars['DateTime']['input'];
|
|
6986
7013
|
gapOwnerAgentId: Scalars['ID']['input'];
|
|
7014
|
+
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
6987
7015
|
projectARI: Scalars['ID']['input'];
|
|
6988
7016
|
scheduleId: Scalars['ID']['input'];
|
|
6989
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
6990
7017
|
startTime: Scalars['DateTime']['input'];
|
|
6991
7018
|
};
|
|
6992
7019
|
export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
@@ -7168,31 +7195,32 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
7168
7195
|
totalAssignedWorkItems: Scalars['Int']['output'];
|
|
7169
7196
|
totalCapacity: Scalars['Int']['output'];
|
|
7170
7197
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
7198
|
+
totalUtilizationPercent: Scalars['Float']['output'];
|
|
7171
7199
|
};
|
|
7172
7200
|
export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
|
|
7173
7201
|
agentId: Scalars['ID']['input'];
|
|
7202
|
+
coveringShiftId: Scalars['ID']['input'];
|
|
7174
7203
|
projectARI: Scalars['ID']['input'];
|
|
7175
7204
|
scheduleId: Scalars['ID']['input'];
|
|
7176
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7177
7205
|
};
|
|
7178
7206
|
export declare type AgentWorkspaceCoverageGap = {
|
|
7179
7207
|
__typename?: 'AgentWorkspaceCoverageGap';
|
|
7180
7208
|
agentId: Scalars['ID']['output'];
|
|
7181
7209
|
durationMinutes: Scalars['Int']['output'];
|
|
7182
7210
|
endTime: Scalars['DateTime']['output'];
|
|
7211
|
+
occurrenceStartTime: Scalars['DateTime']['output'];
|
|
7183
7212
|
scheduleId: Scalars['ID']['output'];
|
|
7184
7213
|
scheduleName: Scalars['String']['output'];
|
|
7185
|
-
shiftSegmentId: Scalars['ID']['output'];
|
|
7186
7214
|
startTime: Scalars['DateTime']['output'];
|
|
7187
7215
|
};
|
|
7188
7216
|
export declare type AgentWorkspaceCoveringShift = {
|
|
7189
7217
|
__typename?: 'AgentWorkspaceCoveringShift';
|
|
7190
7218
|
coveringAgentId: Scalars['ID']['output'];
|
|
7219
|
+
coveringShiftId: Scalars['ID']['output'];
|
|
7191
7220
|
durationMinutes: Scalars['Int']['output'];
|
|
7192
7221
|
endTime: Scalars['DateTime']['output'];
|
|
7193
7222
|
scheduleId: Scalars['ID']['output'];
|
|
7194
7223
|
scheduleName: Scalars['String']['output'];
|
|
7195
|
-
shiftSegmentId: Scalars['ID']['output'];
|
|
7196
7224
|
startTime: Scalars['DateTime']['output'];
|
|
7197
7225
|
};
|
|
7198
7226
|
export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
|
|
@@ -7262,9 +7290,9 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
7262
7290
|
};
|
|
7263
7291
|
export declare type AgentWorkspaceDeleteCoverShiftInput = {
|
|
7264
7292
|
agentId: Scalars['ID']['input'];
|
|
7293
|
+
coveringShiftId: Scalars['ID']['input'];
|
|
7265
7294
|
projectARI: Scalars['ID']['input'];
|
|
7266
7295
|
scheduleId: Scalars['ID']['input'];
|
|
7267
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7268
7296
|
};
|
|
7269
7297
|
export declare type AgentWorkspaceDeleteCoverShiftPayload = {
|
|
7270
7298
|
__typename?: 'AgentWorkspaceDeleteCoverShiftPayload';
|
|
@@ -7306,12 +7334,16 @@ export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
|
7306
7334
|
description?: Maybe<Scalars['String']['output']>;
|
|
7307
7335
|
serviceId: Scalars['ID']['output'];
|
|
7308
7336
|
serviceName: Scalars['String']['output'];
|
|
7337
|
+
skills: Array<Scalars['String']['output']>;
|
|
7338
|
+
team?: Maybe<TeamV2>;
|
|
7309
7339
|
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7340
|
+
version: Scalars['Int']['output'];
|
|
7310
7341
|
};
|
|
7311
7342
|
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7312
7343
|
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
7313
7344
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7314
7345
|
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7346
|
+
skills?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7315
7347
|
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7316
7348
|
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7317
7349
|
};
|
|
@@ -7325,12 +7357,12 @@ export declare type AgentWorkspaceDraftedRoutingTableStatus = {
|
|
|
7325
7357
|
};
|
|
7326
7358
|
export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
7327
7359
|
agentId: Scalars['ID']['input'];
|
|
7360
|
+
coveringShiftId: Scalars['ID']['input'];
|
|
7328
7361
|
newAgentId?: InputMaybe<Scalars['ID']['input']>;
|
|
7329
7362
|
newEndTime: Scalars['DateTime']['input'];
|
|
7330
7363
|
newStartTime: Scalars['DateTime']['input'];
|
|
7331
7364
|
projectARI: Scalars['ID']['input'];
|
|
7332
7365
|
scheduleId: Scalars['ID']['input'];
|
|
7333
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7334
7366
|
};
|
|
7335
7367
|
export declare type AgentWorkspaceEditCoverShiftPayload = {
|
|
7336
7368
|
__typename?: 'AgentWorkspaceEditCoverShiftPayload';
|
|
@@ -7383,7 +7415,11 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
7383
7415
|
export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
7384
7416
|
__typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
|
|
7385
7417
|
issueARI: Scalars['ID']['output'];
|
|
7418
|
+
projectedReceiverUtilization: Scalars['Float']['output'];
|
|
7419
|
+
projectedSourceUtilization: Scalars['Float']['output'];
|
|
7386
7420
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7421
|
+
sourceAgentId: Scalars['ID']['output'];
|
|
7422
|
+
toAgentId: Scalars['ID']['output'];
|
|
7387
7423
|
};
|
|
7388
7424
|
export declare type AgentWorkspaceIssueRoutingHistory = {
|
|
7389
7425
|
__typename?: 'AgentWorkspaceIssueRoutingHistory';
|
|
@@ -7433,7 +7469,6 @@ export declare type AgentWorkspaceRecommendedAgentsForCoverageGapInput = {
|
|
|
7433
7469
|
gapOwnerAgentId: Scalars['ID']['input'];
|
|
7434
7470
|
projectARI: Scalars['ID']['input'];
|
|
7435
7471
|
scheduleId: Scalars['ID']['input'];
|
|
7436
|
-
shiftSegmentId: Scalars['ID']['input'];
|
|
7437
7472
|
};
|
|
7438
7473
|
export declare type AgentWorkspaceRecommendedAgentsForCoverageGapPayload = {
|
|
7439
7474
|
__typename?: 'AgentWorkspaceRecommendedAgentsForCoverageGapPayload';
|
|
@@ -7523,6 +7558,7 @@ export declare type AgentWorkspaceRoutingTableEntry = {
|
|
|
7523
7558
|
id: Scalars['ID']['output'];
|
|
7524
7559
|
serviceFieldValue: Scalars['String']['output'];
|
|
7525
7560
|
serviceName: Scalars['String']['output'];
|
|
7561
|
+
team?: Maybe<TeamV2>;
|
|
7526
7562
|
teamAri: Scalars['ID']['output'];
|
|
7527
7563
|
};
|
|
7528
7564
|
export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
@@ -7624,6 +7660,10 @@ export declare type AgentWorkspaceSchedulesPageInfo = {
|
|
|
7624
7660
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7625
7661
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7626
7662
|
};
|
|
7663
|
+
export declare type AgentWorkspaceSelectedRowVersion = {
|
|
7664
|
+
expectedVersion: Scalars['Int']['input'];
|
|
7665
|
+
serviceId: Scalars['ID']['input'];
|
|
7666
|
+
};
|
|
7627
7667
|
export declare type AgentWorkspaceService = {
|
|
7628
7668
|
__typename?: 'AgentWorkspaceService';
|
|
7629
7669
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -7732,7 +7772,6 @@ export declare type AgentWorkspaceShiftEditBoundsInput = {
|
|
|
7732
7772
|
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
7733
7773
|
projectARI: Scalars['ID']['input'];
|
|
7734
7774
|
scheduleId: Scalars['ID']['input'];
|
|
7735
|
-
shiftStartTime: Scalars['DateTime']['input'];
|
|
7736
7775
|
};
|
|
7737
7776
|
export declare type AgentWorkspaceShiftsAppliedFilters = {
|
|
7738
7777
|
__typename?: 'AgentWorkspaceShiftsAppliedFilters';
|
|
@@ -7796,6 +7835,7 @@ export declare type AgentWorkspaceSkillServicesArgs = {
|
|
|
7796
7835
|
};
|
|
7797
7836
|
export declare type AgentWorkspaceSkillAgentAssignment = {
|
|
7798
7837
|
__typename?: 'AgentWorkspaceSkillAgentAssignment';
|
|
7838
|
+
agent: AgentWorkspaceUser;
|
|
7799
7839
|
skill: AgentWorkspaceSkill;
|
|
7800
7840
|
userAri: Scalars['ID']['output'];
|
|
7801
7841
|
};
|
|
@@ -7864,6 +7904,12 @@ export declare type AgentWorkspaceSkillEdge = {
|
|
|
7864
7904
|
cursor: Scalars['String']['output'];
|
|
7865
7905
|
node: AgentWorkspaceSkill;
|
|
7866
7906
|
};
|
|
7907
|
+
export declare type AgentWorkspaceSkillMappingCreateInput = {
|
|
7908
|
+
category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
|
|
7909
|
+
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
7910
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7911
|
+
name: Scalars['String']['input'];
|
|
7912
|
+
};
|
|
7867
7913
|
export declare type AgentWorkspaceSkillServiceMapping = {
|
|
7868
7914
|
__typename?: 'AgentWorkspaceSkillServiceMapping';
|
|
7869
7915
|
serviceId: Scalars['ID']['output'];
|
|
@@ -7905,8 +7951,9 @@ export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
|
|
|
7905
7951
|
days?: InputMaybe<Scalars['Int']['input']>;
|
|
7906
7952
|
maxIssues?: InputMaybe<Scalars['Int']['input']>;
|
|
7907
7953
|
projectKey: Scalars['String']['input'];
|
|
7908
|
-
|
|
7954
|
+
selectedRows?: InputMaybe<Array<AgentWorkspaceSelectedRowVersion>>;
|
|
7909
7955
|
serviceFieldId: Scalars['String']['input'];
|
|
7956
|
+
serviceFieldType: Scalars['String']['input'];
|
|
7910
7957
|
};
|
|
7911
7958
|
export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
7912
7959
|
__typename?: 'AgentWorkspaceStartGenerateRoutingTablePayload';
|
|
@@ -7915,6 +7962,7 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
7915
7962
|
};
|
|
7916
7963
|
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
7917
7964
|
cloudId: Scalars['ID']['input'];
|
|
7965
|
+
expectedSetupVersion: Scalars['Int']['input'];
|
|
7918
7966
|
fieldId: Scalars['String']['input'];
|
|
7919
7967
|
projectKey: Scalars['String']['input'];
|
|
7920
7968
|
};
|
|
@@ -8077,6 +8125,22 @@ export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
|
8077
8125
|
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
8078
8126
|
success: Scalars['Boolean']['output'];
|
|
8079
8127
|
};
|
|
8128
|
+
export declare type AgentWorkspaceUpdateSkillMappingsInProjectInput = {
|
|
8129
|
+
assignAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8130
|
+
cloudId: Scalars['ID']['input'];
|
|
8131
|
+
mapServiceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8132
|
+
projectId: Scalars['ID']['input'];
|
|
8133
|
+
skill?: InputMaybe<AgentWorkspaceSkillMappingCreateInput>;
|
|
8134
|
+
skillId?: InputMaybe<Scalars['ID']['input']>;
|
|
8135
|
+
unassignAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8136
|
+
unmapServiceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8137
|
+
};
|
|
8138
|
+
export declare type AgentWorkspaceUpdateSkillMappingsInProjectPayload = {
|
|
8139
|
+
__typename?: 'AgentWorkspaceUpdateSkillMappingsInProjectPayload';
|
|
8140
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8141
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
8142
|
+
success: Scalars['Boolean']['output'];
|
|
8143
|
+
};
|
|
8080
8144
|
export declare type AgentWorkspaceUpdateSmartRoutingConfigInput = {
|
|
8081
8145
|
enabled: Scalars['Boolean']['input'];
|
|
8082
8146
|
projectAri: Scalars['ID']['input'];
|
|
@@ -8088,6 +8152,7 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
8088
8152
|
};
|
|
8089
8153
|
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
8090
8154
|
cloudId: Scalars['ID']['input'];
|
|
8155
|
+
expectedVersion: Scalars['Int']['input'];
|
|
8091
8156
|
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8092
8157
|
projectKey: Scalars['String']['input'];
|
|
8093
8158
|
row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
|
|
@@ -8156,7 +8221,29 @@ export declare type AiCoreApiRsaEmployeeResult = {
|
|
|
8156
8221
|
__typename?: 'AiCoreApiRsaEmployeeResult';
|
|
8157
8222
|
contributors: Array<AiCoreApiRsaEmployeeContributor>;
|
|
8158
8223
|
};
|
|
8224
|
+
export declare type AiCoreApiRsaEmployeeTickets = {
|
|
8225
|
+
__typename?: 'AiCoreApiRsaEmployeeTickets';
|
|
8226
|
+
accountId: Scalars['ID']['output'];
|
|
8227
|
+
delegationCount: Scalars['Int']['output'];
|
|
8228
|
+
truncated: Scalars['Boolean']['output'];
|
|
8229
|
+
workItemIds: Array<Scalars['ID']['output']>;
|
|
8230
|
+
};
|
|
8231
|
+
export declare type AiCoreApiRsaEmployeeTicketsPayload = {
|
|
8232
|
+
__typename?: 'AiCoreApiRsaEmployeeTicketsPayload';
|
|
8233
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
8234
|
+
employees?: Maybe<Array<AiCoreApiRsaEmployeeTickets>>;
|
|
8235
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
8236
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
8237
|
+
status: AiCoreApiRsaJobStatus;
|
|
8238
|
+
};
|
|
8239
|
+
export declare type AiCoreApiRsaEmployeeTicketsResult = AiCoreApiRsaEmployeeTicketsPayload | QueryError;
|
|
8159
8240
|
export declare type AiCoreApiRsaFetchReportResult = AiCoreApiRsaReportPayload | QueryError;
|
|
8241
|
+
export declare type AiCoreApiRsaFunnelMetricsPayload = {
|
|
8242
|
+
__typename?: 'AiCoreApiRsaFunnelMetricsPayload';
|
|
8243
|
+
ticketsAssignedToRovo: Scalars['Int']['output'];
|
|
8244
|
+
ticketsWithResolutionPlan: Scalars['Int']['output'];
|
|
8245
|
+
};
|
|
8246
|
+
export declare type AiCoreApiRsaFunnelMetricsResult = AiCoreApiRsaFunnelMetricsPayload | QueryError;
|
|
8160
8247
|
export declare type AiCoreApiRsaFunnelResult = {
|
|
8161
8248
|
__typename?: 'AiCoreApiRsaFunnelResult';
|
|
8162
8249
|
autonomouslyResolved: Scalars['Int']['output'];
|
|
@@ -8205,6 +8292,7 @@ export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
|
8205
8292
|
__typename?: 'AiCoreApiRsaRequestTypeEntry';
|
|
8206
8293
|
assisted: Scalars['Int']['output'];
|
|
8207
8294
|
fullyResolved: Scalars['Int']['output'];
|
|
8295
|
+
requestTypeId: Scalars['String']['output'];
|
|
8208
8296
|
requestTypeName: Scalars['String']['output'];
|
|
8209
8297
|
totalClosed: Scalars['Int']['output'];
|
|
8210
8298
|
};
|
|
@@ -8250,7 +8338,6 @@ export declare type AiCoreApiVsaUnassistedConversationStatsWithMetaData = {
|
|
|
8250
8338
|
};
|
|
8251
8339
|
export declare type AiManagedObject = {
|
|
8252
8340
|
__typename?: 'AiManagedObject';
|
|
8253
|
-
ari: Scalars['String']['output'];
|
|
8254
8341
|
config?: Maybe<AiManagedObjectConfig>;
|
|
8255
8342
|
createdAt: Scalars['Long']['output'];
|
|
8256
8343
|
createdBy: Scalars['String']['output'];
|
|
@@ -8269,12 +8356,12 @@ export declare type AiManagedObject = {
|
|
|
8269
8356
|
export declare type AiManagedObjectConfig = {
|
|
8270
8357
|
__typename?: 'AiManagedObjectConfig';
|
|
8271
8358
|
agentId?: Maybe<Scalars['String']['output']>;
|
|
8272
|
-
aiManagedObjectAri: Scalars['String']['output'];
|
|
8273
8359
|
aiManagedObjectId: Scalars['ID']['output'];
|
|
8274
8360
|
createdAt: Scalars['Long']['output'];
|
|
8275
8361
|
createdBy: Scalars['String']['output'];
|
|
8276
8362
|
desiredUpdateInterval?: Maybe<Scalars['String']['output']>;
|
|
8277
8363
|
goal?: Maybe<Scalars['String']['output']>;
|
|
8364
|
+
goalOperations?: Maybe<Scalars['JSON']['output']>;
|
|
8278
8365
|
id: Scalars['ID']['output'];
|
|
8279
8366
|
prompt: Scalars['String']['output'];
|
|
8280
8367
|
sources?: Maybe<Array<AiManagedObjectSource>>;
|
|
@@ -8284,6 +8371,7 @@ export declare type AiManagedObjectConfigCreateInput = {
|
|
|
8284
8371
|
agentId?: InputMaybe<Scalars['String']['input']>;
|
|
8285
8372
|
desiredUpdateInterval?: InputMaybe<Scalars['String']['input']>;
|
|
8286
8373
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
8374
|
+
goalOperations?: InputMaybe<Scalars['JSON']['input']>;
|
|
8287
8375
|
prompt: Scalars['String']['input'];
|
|
8288
8376
|
sources?: InputMaybe<Array<AiManagedObjectSourceInput>>;
|
|
8289
8377
|
};
|
|
@@ -8336,6 +8424,69 @@ export declare type AiManagedObjectUpdateInput = {
|
|
|
8336
8424
|
status?: InputMaybe<AiManagedObjectStatus>;
|
|
8337
8425
|
type?: InputMaybe<AiManagedObjectType>;
|
|
8338
8426
|
};
|
|
8427
|
+
export declare type AiPlannerPlan = {
|
|
8428
|
+
__typename?: 'AiPlannerPlan';
|
|
8429
|
+
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
8430
|
+
conversations: AiPlannerPlanConversationConnection;
|
|
8431
|
+
createdAt: Scalars['String']['output'];
|
|
8432
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
8433
|
+
id: Scalars['String']['output'];
|
|
8434
|
+
name: Scalars['String']['output'];
|
|
8435
|
+
tasks: AiPlannerPlanTaskConnection;
|
|
8436
|
+
updatedAt: Scalars['String']['output'];
|
|
8437
|
+
};
|
|
8438
|
+
export declare type AiPlannerPlanConnection = {
|
|
8439
|
+
__typename?: 'AiPlannerPlanConnection';
|
|
8440
|
+
edges: Array<AiPlannerPlanEdge>;
|
|
8441
|
+
pageInfo: PageInfo;
|
|
8442
|
+
};
|
|
8443
|
+
export declare type AiPlannerPlanConversation = {
|
|
8444
|
+
__typename?: 'AiPlannerPlanConversation';
|
|
8445
|
+
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
8446
|
+
createdAt: Scalars['String']['output'];
|
|
8447
|
+
id: Scalars['String']['output'];
|
|
8448
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8449
|
+
planId?: Maybe<Scalars['String']['output']>;
|
|
8450
|
+
};
|
|
8451
|
+
export declare type AiPlannerPlanConversationConnection = {
|
|
8452
|
+
__typename?: 'AiPlannerPlanConversationConnection';
|
|
8453
|
+
edges: Array<AiPlannerPlanConversationEdge>;
|
|
8454
|
+
pageInfo: PageInfo;
|
|
8455
|
+
};
|
|
8456
|
+
export declare type AiPlannerPlanConversationEdge = {
|
|
8457
|
+
__typename?: 'AiPlannerPlanConversationEdge';
|
|
8458
|
+
cursor: Scalars['String']['output'];
|
|
8459
|
+
node: AiPlannerPlanConversation;
|
|
8460
|
+
};
|
|
8461
|
+
export declare type AiPlannerPlanEdge = {
|
|
8462
|
+
__typename?: 'AiPlannerPlanEdge';
|
|
8463
|
+
cursor: Scalars['String']['output'];
|
|
8464
|
+
node: AiPlannerPlan;
|
|
8465
|
+
};
|
|
8466
|
+
export declare type AiPlannerPlanTask = {
|
|
8467
|
+
__typename?: 'AiPlannerPlanTask';
|
|
8468
|
+
archivedAt?: Maybe<Scalars['String']['output']>;
|
|
8469
|
+
createdAt: Scalars['String']['output'];
|
|
8470
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
8471
|
+
id: Scalars['String']['output'];
|
|
8472
|
+
jiraIssueAri?: Maybe<Scalars['String']['output']>;
|
|
8473
|
+
name: Scalars['String']['output'];
|
|
8474
|
+
planId: Scalars['String']['output'];
|
|
8475
|
+
position: Scalars['Int']['output'];
|
|
8476
|
+
repo?: Maybe<Scalars['String']['output']>;
|
|
8477
|
+
status: Scalars['String']['output'];
|
|
8478
|
+
updatedAt: Scalars['String']['output'];
|
|
8479
|
+
};
|
|
8480
|
+
export declare type AiPlannerPlanTaskConnection = {
|
|
8481
|
+
__typename?: 'AiPlannerPlanTaskConnection';
|
|
8482
|
+
edges: Array<AiPlannerPlanTaskEdge>;
|
|
8483
|
+
pageInfo: PageInfo;
|
|
8484
|
+
};
|
|
8485
|
+
export declare type AiPlannerPlanTaskEdge = {
|
|
8486
|
+
__typename?: 'AiPlannerPlanTaskEdge';
|
|
8487
|
+
cursor: Scalars['String']['output'];
|
|
8488
|
+
node: AiPlannerPlanTask;
|
|
8489
|
+
};
|
|
8339
8490
|
export declare enum AlertEventStatus {
|
|
8340
8491
|
Acknowledged = "ACKNOWLEDGED",
|
|
8341
8492
|
Closed = "CLOSED",
|
|
@@ -9320,6 +9471,7 @@ export declare type AppPermission = {
|
|
|
9320
9471
|
icId?: Maybe<Scalars['String']['output']>;
|
|
9321
9472
|
scopes: Array<AppHostServiceScope>;
|
|
9322
9473
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
|
|
9474
|
+
supportsConfigurableEgress?: Maybe<Scalars['Boolean']['output']>;
|
|
9323
9475
|
};
|
|
9324
9476
|
export declare type AppPrincipal = {
|
|
9325
9477
|
__typename?: 'AppPrincipal';
|
|
@@ -10672,6 +10824,7 @@ export declare type AssetsDmDataSource = {
|
|
|
10672
10824
|
dataSourceType?: Maybe<AssetsDmJobDetailsDataSourceType>;
|
|
10673
10825
|
dataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
10674
10826
|
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
10827
|
+
isScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
10675
10828
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
10676
10829
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
10677
10830
|
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
@@ -10948,6 +11101,7 @@ export declare type AssetsDmDataSourceDetailResponse = {
|
|
|
10948
11101
|
};
|
|
10949
11102
|
export declare type AssetsDmDataSourceDetails = {
|
|
10950
11103
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
11104
|
+
canBeScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
10951
11105
|
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
10952
11106
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
10953
11107
|
isCloudFetchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -10955,6 +11109,7 @@ export declare type AssetsDmDataSourceDetails = {
|
|
|
10955
11109
|
jobId?: Maybe<Scalars['ID']['output']>;
|
|
10956
11110
|
name: Scalars['String']['output'];
|
|
10957
11111
|
objectClassName: Scalars['String']['output'];
|
|
11112
|
+
schedule?: Maybe<AssetsDmDataSourceSchedule>;
|
|
10958
11113
|
steps: AssetsDmDataSourceSteps;
|
|
10959
11114
|
};
|
|
10960
11115
|
export declare type AssetsDmDataSourceFormFields = {
|
|
@@ -11154,6 +11309,13 @@ export declare type AssetsDmDataSourceRunTransformResponse = {
|
|
|
11154
11309
|
isSuccessful: Scalars['Boolean']['output'];
|
|
11155
11310
|
message?: Maybe<Scalars['String']['output']>;
|
|
11156
11311
|
};
|
|
11312
|
+
export declare type AssetsDmDataSourceSchedule = {
|
|
11313
|
+
__typename?: 'AssetsDMDataSourceSchedule';
|
|
11314
|
+
frequency?: Maybe<Scalars['Int']['output']>;
|
|
11315
|
+
scheduledImportId?: Maybe<Scalars['ID']['output']>;
|
|
11316
|
+
startDateUtc?: Maybe<Scalars['String']['output']>;
|
|
11317
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
11318
|
+
};
|
|
11157
11319
|
export declare type AssetsDmDataSourceSearch = {
|
|
11158
11320
|
dataSourceType?: InputMaybe<Scalars['String']['input']>;
|
|
11159
11321
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -11802,6 +11964,16 @@ export declare type AssetsDmJobExecutionsResponse = {
|
|
|
11802
11964
|
rows: Array<AssetsDmJobExecution>;
|
|
11803
11965
|
rowsCount: Scalars['Int']['output'];
|
|
11804
11966
|
};
|
|
11967
|
+
export declare type AssetsDmJobScheduleInput = {
|
|
11968
|
+
frequency: Scalars['Int']['input'];
|
|
11969
|
+
startDateUtc: Scalars['String']['input'];
|
|
11970
|
+
timezone: Scalars['String']['input'];
|
|
11971
|
+
};
|
|
11972
|
+
export declare type AssetsDmJobScheduleMutationResponse = {
|
|
11973
|
+
__typename?: 'AssetsDMJobScheduleMutationResponse';
|
|
11974
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
11975
|
+
message: Scalars['String']['output'];
|
|
11976
|
+
};
|
|
11805
11977
|
export declare type AssetsDmMappedColumn = {
|
|
11806
11978
|
__typename?: 'AssetsDMMappedColumn';
|
|
11807
11979
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -13540,6 +13712,41 @@ export declare type AssetsVerticalGroupPrincipal = {
|
|
|
13540
13712
|
group?: Maybe<IdentityGroup>;
|
|
13541
13713
|
principalId: Scalars['ID']['output'];
|
|
13542
13714
|
};
|
|
13715
|
+
export declare type AssetsVerticalHardwareCountByStatus = {
|
|
13716
|
+
__typename?: 'AssetsVerticalHardwareCountByStatus';
|
|
13717
|
+
counts?: Maybe<Array<Maybe<AssetsVerticalStatusCount>>>;
|
|
13718
|
+
};
|
|
13719
|
+
export declare type AssetsVerticalHardwareCountByStatusInput = {
|
|
13720
|
+
filters?: InputMaybe<Array<Array<AssetsVerticalObjectsFilterCondition>>>;
|
|
13721
|
+
statusField: Scalars['String']['input'];
|
|
13722
|
+
statuses: Array<Scalars['String']['input']>;
|
|
13723
|
+
verticalInstantiationCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
13724
|
+
};
|
|
13725
|
+
export declare type AssetsVerticalHardwareCountByStatusResult = AssetsVerticalHardwareCountByStatus | QueryError;
|
|
13726
|
+
export declare type AssetsVerticalHardwareObjectTypesInput = {
|
|
13727
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
13728
|
+
workspaceId: Scalars['ID']['input'];
|
|
13729
|
+
};
|
|
13730
|
+
export declare type AssetsVerticalHardwareObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
13731
|
+
export declare type AssetsVerticalHardwareObjects = AssetsVerticalObjects & {
|
|
13732
|
+
__typename?: 'AssetsVerticalHardwareObjects';
|
|
13733
|
+
itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
|
|
13734
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
13735
|
+
objects?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
13736
|
+
offset?: Maybe<Scalars['Int']['output']>;
|
|
13737
|
+
pageInfo?: Maybe<PageInfo>;
|
|
13738
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13739
|
+
};
|
|
13740
|
+
export declare type AssetsVerticalHardwareObjectsInput = {
|
|
13741
|
+
filters?: InputMaybe<Array<Array<AssetsVerticalObjectsFilterCondition>>>;
|
|
13742
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
13743
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
13744
|
+
orderDirection?: InputMaybe<AssetsVerticalObjectsOrderDirection>;
|
|
13745
|
+
orderKey?: InputMaybe<Scalars['String']['input']>;
|
|
13746
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
13747
|
+
workspaceId: Scalars['ID']['input'];
|
|
13748
|
+
};
|
|
13749
|
+
export declare type AssetsVerticalHardwareObjectsResult = AssetsVerticalHardwareObjects | QueryError;
|
|
13543
13750
|
export declare type AssetsVerticalInsightCard = {
|
|
13544
13751
|
__typename?: 'AssetsVerticalInsightCard';
|
|
13545
13752
|
category: Scalars['String']['output'];
|
|
@@ -14380,20 +14587,6 @@ export declare enum AutoManagedSprintSetting {
|
|
|
14380
14587
|
Disabled = "DISABLED",
|
|
14381
14588
|
Enabled = "ENABLED"
|
|
14382
14589
|
}
|
|
14383
|
-
export declare type AuxEffectsInvocationPayload = {
|
|
14384
|
-
config?: InputMaybe<Scalars['JSON']['input']>;
|
|
14385
|
-
context: Scalars['JSON']['input'];
|
|
14386
|
-
contextToken?: InputMaybe<Scalars['String']['input']>;
|
|
14387
|
-
effects: Array<Scalars['JSON']['input']>;
|
|
14388
|
-
extensionPayload?: InputMaybe<Scalars['JSON']['input']>;
|
|
14389
|
-
state: Scalars['JSON']['input'];
|
|
14390
|
-
};
|
|
14391
|
-
export declare type AuxEffectsResult = {
|
|
14392
|
-
__typename?: 'AuxEffectsResult';
|
|
14393
|
-
contextToken?: Maybe<ForgeContextToken>;
|
|
14394
|
-
effects: Array<Scalars['JSON']['output']>;
|
|
14395
|
-
metrics?: Maybe<InvocationMetrics>;
|
|
14396
|
-
};
|
|
14397
14590
|
export declare type AvailableColumnConstraintStatistics = {
|
|
14398
14591
|
__typename?: 'AvailableColumnConstraintStatistics';
|
|
14399
14592
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -15851,6 +16044,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
15851
16044
|
hasSid?: Maybe<Scalars['Boolean']['output']>;
|
|
15852
16045
|
id: Scalars['ID']['output'];
|
|
15853
16046
|
invoiceRequests?: Maybe<Array<Maybe<CcpInvoiceRequest>>>;
|
|
16047
|
+
isActiveOnContract?: Maybe<Scalars['Boolean']['output']>;
|
|
15854
16048
|
isEligibleForCloudMigrationTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
15855
16049
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
15856
16050
|
license?: Maybe<CcpLicense>;
|
|
@@ -18194,6 +18388,7 @@ export declare type CloudifyRecommendation = {
|
|
|
18194
18388
|
createdAt: Scalars['String']['output'];
|
|
18195
18389
|
id: CloudifyRecommendationId;
|
|
18196
18390
|
reasoning: Scalars['String']['output'];
|
|
18391
|
+
status: CloudifyRecommendationStatus;
|
|
18197
18392
|
steps: Array<CloudifyRecommendationStep>;
|
|
18198
18393
|
target: CloudifyRecommendationTarget;
|
|
18199
18394
|
title: Scalars['String']['output'];
|
|
@@ -18212,6 +18407,15 @@ export declare type CloudifyRecommendationInput = {
|
|
|
18212
18407
|
target: CloudifyTargetInput;
|
|
18213
18408
|
title: Scalars['String']['input'];
|
|
18214
18409
|
};
|
|
18410
|
+
export declare enum CloudifyRecommendationStatus {
|
|
18411
|
+
Disabled = "DISABLED",
|
|
18412
|
+
Enabled = "ENABLED",
|
|
18413
|
+
Failed = "FAILED",
|
|
18414
|
+
New = "NEW",
|
|
18415
|
+
Preparing = "PREPARING",
|
|
18416
|
+
ReadyForReview = "READY_FOR_REVIEW",
|
|
18417
|
+
Rejected = "REJECTED"
|
|
18418
|
+
}
|
|
18215
18419
|
export declare type CloudifyRecommendationStep = {
|
|
18216
18420
|
__typename?: 'CloudifyRecommendationStep';
|
|
18217
18421
|
arguments: Array<CloudifyArgument>;
|
|
@@ -19751,6 +19955,7 @@ export declare type CommerceExpCcpTransactionAccount = {
|
|
|
19751
19955
|
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
19752
19956
|
billToPartyResult?: Maybe<CommerceExpBillToPartyResult>;
|
|
19753
19957
|
billingAdminIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
19958
|
+
billingAdmins2?: Maybe<Array<Maybe<User>>>;
|
|
19754
19959
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
19755
19960
|
createdAt2?: Maybe<Scalars['Float']['output']>;
|
|
19756
19961
|
creditDetails?: Maybe<Array<Maybe<CommerceExpCreditDetails>>>;
|
|
@@ -36299,6 +36504,9 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
36299
36504
|
success: Scalars['Boolean']['output'];
|
|
36300
36505
|
works?: Maybe<Array<Maybe<CplsWorkEdge>>>;
|
|
36301
36506
|
};
|
|
36507
|
+
export declare type CplsAddContributionsPayloadContributorsArgs = {
|
|
36508
|
+
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36509
|
+
};
|
|
36302
36510
|
export declare type CplsAddContributionsPayloadPeopleViewArgs = {
|
|
36303
36511
|
scopeId: Scalars['ID']['input'];
|
|
36304
36512
|
};
|
|
@@ -37960,6 +38168,7 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
37960
38168
|
};
|
|
37961
38169
|
export declare type CsmAiAvailableKnowledgeSource = {
|
|
37962
38170
|
__typename?: 'CsmAiAvailableKnowledgeSource';
|
|
38171
|
+
isAgentUserOAuthed: Scalars['Boolean']['output'];
|
|
37963
38172
|
isConfigured: Scalars['Boolean']['output'];
|
|
37964
38173
|
isConnected: Scalars['Boolean']['output'];
|
|
37965
38174
|
sourceType: Scalars['String']['output'];
|
|
@@ -39268,8 +39477,22 @@ export declare type CustomerServiceLiveChatAgent = {
|
|
|
39268
39477
|
id: Scalars['ID']['output'];
|
|
39269
39478
|
liveChatActivitiesBySpace?: Maybe<CustomerServiceSpaceLiveChatActivitiesConnection>;
|
|
39270
39479
|
liveChatActivity?: Maybe<Scalars['String']['output']>;
|
|
39480
|
+
user?: Maybe<User>;
|
|
39481
|
+
};
|
|
39482
|
+
export declare type CustomerServiceLiveChatAgentConnection = {
|
|
39483
|
+
__typename?: 'CustomerServiceLiveChatAgentConnection';
|
|
39484
|
+
edges: Array<CustomerServiceLiveChatAgentEdge>;
|
|
39485
|
+
pageInfo: PageInfo;
|
|
39486
|
+
};
|
|
39487
|
+
export declare type CustomerServiceLiveChatAgentEdge = {
|
|
39488
|
+
__typename?: 'CustomerServiceLiveChatAgentEdge';
|
|
39489
|
+
cursor: Scalars['String']['output'];
|
|
39490
|
+
node?: Maybe<CustomerServiceLiveChatAgent>;
|
|
39271
39491
|
};
|
|
39272
39492
|
export declare type CustomerServiceLiveChatAgentQueryResult = CustomerServiceLiveChatAgent | QueryError;
|
|
39493
|
+
export declare type CustomerServiceLiveChatAgentsFilterInput = {
|
|
39494
|
+
availableInSpace?: InputMaybe<Scalars['ID']['input']>;
|
|
39495
|
+
};
|
|
39273
39496
|
export declare type CustomerServiceLiveChatSettings = {
|
|
39274
39497
|
__typename?: 'CustomerServiceLiveChatSettings';
|
|
39275
39498
|
globalCapacity?: Maybe<Scalars['Int']['output']>;
|
|
@@ -40014,6 +40237,7 @@ export declare type CustomerServiceUpdateCustomerNameInput = {
|
|
|
40014
40237
|
};
|
|
40015
40238
|
export declare type CustomerServiceUpdateCustomerNamePayload = Payload & {
|
|
40016
40239
|
__typename?: 'CustomerServiceUpdateCustomerNamePayload';
|
|
40240
|
+
customer?: Maybe<CustomerServiceIndividual>;
|
|
40017
40241
|
errors?: Maybe<Array<MutationError>>;
|
|
40018
40242
|
success: Scalars['Boolean']['output'];
|
|
40019
40243
|
updatedCustomer?: Maybe<CustomerServiceUpdatedCustomerAccount>;
|
|
@@ -41379,7 +41603,11 @@ export declare type DevAiFlowRepository = {
|
|
|
41379
41603
|
};
|
|
41380
41604
|
export declare type DevAiFlowRepositoryConnection = {
|
|
41381
41605
|
__typename?: 'DevAiFlowRepositoryConnection';
|
|
41606
|
+
bitbucketWorkspacesSearched?: Maybe<Scalars['Int']['output']>;
|
|
41382
41607
|
edges?: Maybe<Array<Maybe<DevAiFlowRepositoryEdge>>>;
|
|
41608
|
+
errors?: Maybe<Array<Maybe<DevAiFlowRepositoryError>>>;
|
|
41609
|
+
githubWorkspacesSearched?: Maybe<Scalars['Int']['output']>;
|
|
41610
|
+
metadata?: Maybe<Array<Maybe<DevAiFlowRepositoryMetadata>>>;
|
|
41383
41611
|
pageInfo: PageInfo;
|
|
41384
41612
|
};
|
|
41385
41613
|
export declare type DevAiFlowRepositoryEdge = {
|
|
@@ -41387,6 +41615,17 @@ export declare type DevAiFlowRepositoryEdge = {
|
|
|
41387
41615
|
cursor: Scalars['String']['output'];
|
|
41388
41616
|
node?: Maybe<DevAiFlowRepository>;
|
|
41389
41617
|
};
|
|
41618
|
+
export declare type DevAiFlowRepositoryError = {
|
|
41619
|
+
__typename?: 'DevAiFlowRepositoryError';
|
|
41620
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
41621
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
41622
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
41623
|
+
};
|
|
41624
|
+
export declare type DevAiFlowRepositoryMetadata = {
|
|
41625
|
+
__typename?: 'DevAiFlowRepositoryMetadata';
|
|
41626
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
41627
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
41628
|
+
};
|
|
41390
41629
|
export declare type DevAiFlowSession = {
|
|
41391
41630
|
__typename?: 'DevAiFlowSession';
|
|
41392
41631
|
additionalInfoJSON?: Maybe<Scalars['String']['output']>;
|
|
@@ -41851,6 +42090,7 @@ export declare enum DevAiSandboxReadiness {
|
|
|
41851
42090
|
Creating = "CREATING",
|
|
41852
42091
|
Error = "ERROR",
|
|
41853
42092
|
Hibernated = "HIBERNATED",
|
|
42093
|
+
InitScriptRunning = "INIT_SCRIPT_RUNNING",
|
|
41854
42094
|
Ready = "READY",
|
|
41855
42095
|
Started = "STARTED",
|
|
41856
42096
|
Starting = "STARTING",
|
|
@@ -42112,6 +42352,7 @@ export declare type DevConsoleAppUsageOverviewResponse = {
|
|
|
42112
42352
|
export declare type DevConsoleAppUsageTopSitesFiltersInput = {
|
|
42113
42353
|
computeType?: InputMaybe<DevConsoleComputeType>;
|
|
42114
42354
|
interval: DevConsoleDateIntervalInput;
|
|
42355
|
+
modelTier?: InputMaybe<Scalars['String']['input']>;
|
|
42115
42356
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
42116
42357
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
42117
42358
|
resource: DevConsoleResource;
|
|
@@ -44208,6 +44449,11 @@ export declare enum EcosystemAppsInstalledInContextsSortKey {
|
|
|
44208
44449
|
Name = "NAME",
|
|
44209
44450
|
RelatedApps = "RELATED_APPS"
|
|
44210
44451
|
}
|
|
44452
|
+
export declare type EcosystemCancelRollingReleasePayload = Payload & {
|
|
44453
|
+
__typename?: 'EcosystemCancelRollingReleasePayload';
|
|
44454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44455
|
+
success: Scalars['Boolean']['output'];
|
|
44456
|
+
};
|
|
44211
44457
|
export declare type EcosystemConnectApp = {
|
|
44212
44458
|
__typename?: 'EcosystemConnectApp';
|
|
44213
44459
|
baseUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -44414,6 +44660,7 @@ export declare type EcosystemMutation = {
|
|
|
44414
44660
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
44415
44661
|
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
44416
44662
|
cancelAppVersionRollout?: Maybe<CancelAppVersionRolloutPayload>;
|
|
44663
|
+
cancelRollingRelease?: Maybe<EcosystemCancelRollingReleasePayload>;
|
|
44417
44664
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
44418
44665
|
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
44419
44666
|
createRollingRelease?: Maybe<CreateRollingReleasePayload>;
|
|
@@ -44442,6 +44689,9 @@ export declare type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
|
44442
44689
|
export declare type EcosystemMutationCancelAppVersionRolloutArgs = {
|
|
44443
44690
|
input: CancelAppVersionRolloutInput;
|
|
44444
44691
|
};
|
|
44692
|
+
export declare type EcosystemMutationCancelRollingReleaseArgs = {
|
|
44693
|
+
rolloutId: Scalars['ID']['input'];
|
|
44694
|
+
};
|
|
44445
44695
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
44446
44696
|
input: CreateAppEnvironmentInput;
|
|
44447
44697
|
};
|
|
@@ -44621,6 +44871,7 @@ export declare type EcosystemQueryRollingReleasesArgs = {
|
|
|
44621
44871
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
44622
44872
|
appId: Scalars['ID']['input'];
|
|
44623
44873
|
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
44874
|
+
filter?: InputMaybe<EcosystemRollingReleaseFilter>;
|
|
44624
44875
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
44625
44876
|
};
|
|
44626
44877
|
export declare type EcosystemQuerySiteEntitlementsArgs = {
|
|
@@ -44670,6 +44921,7 @@ export declare type EcosystemRollingRelease = {
|
|
|
44670
44921
|
startedAt: Scalars['DateTime']['output'];
|
|
44671
44922
|
status: EcosystemRollingReleaseStatus;
|
|
44672
44923
|
successCount: Scalars['Int']['output'];
|
|
44924
|
+
targetVersion: Scalars['String']['output'];
|
|
44673
44925
|
targetVersionId: Scalars['ID']['output'];
|
|
44674
44926
|
totalInstallations: Scalars['Int']['output'];
|
|
44675
44927
|
};
|
|
@@ -44687,10 +44939,14 @@ export declare type EcosystemRollingReleaseEdge = {
|
|
|
44687
44939
|
};
|
|
44688
44940
|
export declare type EcosystemRollingReleaseEligibility = {
|
|
44689
44941
|
__typename?: 'EcosystemRollingReleaseEligibility';
|
|
44942
|
+
targetVersion: Scalars['String']['output'];
|
|
44690
44943
|
targetVersionId: Scalars['ID']['output'];
|
|
44691
44944
|
totalEligibleInstallationCount: Scalars['Int']['output'];
|
|
44692
44945
|
versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
|
|
44693
44946
|
};
|
|
44947
|
+
export declare type EcosystemRollingReleaseFilter = {
|
|
44948
|
+
statuses?: InputMaybe<Array<EcosystemRollingReleaseStatus>>;
|
|
44949
|
+
};
|
|
44694
44950
|
export declare type EcosystemRollingReleasePageInfo = {
|
|
44695
44951
|
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
44696
44952
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -44756,7 +45012,7 @@ export declare type EcosystemVersionEligibilityBreakdown = {
|
|
|
44756
45012
|
failingEligibilityRules: Array<Scalars['String']['output']>;
|
|
44757
45013
|
installationCount: Scalars['Int']['output'];
|
|
44758
45014
|
isEligible: Scalars['Boolean']['output'];
|
|
44759
|
-
|
|
45015
|
+
sourceVersion: Scalars['String']['output'];
|
|
44760
45016
|
sourceVersionId: Scalars['ID']['output'];
|
|
44761
45017
|
};
|
|
44762
45018
|
export declare type EditSprintInput = {
|
|
@@ -46327,6 +46583,9 @@ export declare type ExternalProject = Node & {
|
|
|
46327
46583
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
46328
46584
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
46329
46585
|
name?: Maybe<Scalars['String']['output']>;
|
|
46586
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
46587
|
+
parent?: Maybe<ExternalEntity>;
|
|
46588
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
46330
46589
|
priority?: Maybe<Scalars['String']['output']>;
|
|
46331
46590
|
provider?: Maybe<ExternalProvider>;
|
|
46332
46591
|
resolution?: Maybe<Scalars['String']['output']>;
|
|
@@ -46334,6 +46593,7 @@ export declare type ExternalProject = Node & {
|
|
|
46334
46593
|
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
46335
46594
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
46336
46595
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
46596
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
46337
46597
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
46338
46598
|
url?: Maybe<Scalars['String']['output']>;
|
|
46339
46599
|
votesCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -48406,6 +48666,9 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
|
|
|
48406
48666
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
48407
48667
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
48408
48668
|
};
|
|
48669
|
+
export declare type GetAllPlansFilterInput = {
|
|
48670
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
48671
|
+
};
|
|
48409
48672
|
export declare enum GlanceEnvironment {
|
|
48410
48673
|
Dev = "DEV",
|
|
48411
48674
|
Prod = "PROD",
|
|
@@ -49486,6 +49749,16 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
49486
49749
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
49487
49750
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
49488
49751
|
};
|
|
49752
|
+
export declare type GraphInferenceGetRelatedReposInput = {
|
|
49753
|
+
cloudId: Scalars['String']['input'];
|
|
49754
|
+
site: Scalars['String']['input'];
|
|
49755
|
+
workItemAri: Scalars['String']['input'];
|
|
49756
|
+
};
|
|
49757
|
+
export declare type GraphInferenceGetRelatedReposResponse = {
|
|
49758
|
+
__typename?: 'GraphInferenceGetRelatedReposResponse';
|
|
49759
|
+
outputs?: Maybe<Scalars['JSON']['output']>;
|
|
49760
|
+
status?: Maybe<Scalars['JSON']['output']>;
|
|
49761
|
+
};
|
|
49489
49762
|
export declare type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
49490
49763
|
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
49491
49764
|
status: GraphIntegrationActionAdminManagementActionStatus;
|
|
@@ -49864,6 +50137,72 @@ export declare type GraphIntegrationMcpServerNodeToolsArgs = {
|
|
|
49864
50137
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49865
50138
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49866
50139
|
};
|
|
50140
|
+
export declare type GraphIntegrationMcpServerRequestConnection = {
|
|
50141
|
+
__typename?: 'GraphIntegrationMcpServerRequestConnection';
|
|
50142
|
+
edges?: Maybe<Array<GraphIntegrationMcpServerRequestEdge>>;
|
|
50143
|
+
error?: Maybe<QueryError>;
|
|
50144
|
+
nodes?: Maybe<Array<GraphIntegrationMcpServerRequestNode>>;
|
|
50145
|
+
pageInfo: PageInfo;
|
|
50146
|
+
};
|
|
50147
|
+
export declare type GraphIntegrationMcpServerRequestEdge = {
|
|
50148
|
+
__typename?: 'GraphIntegrationMcpServerRequestEdge';
|
|
50149
|
+
cursor: Scalars['String']['output'];
|
|
50150
|
+
node?: Maybe<GraphIntegrationMcpServerRequestNode>;
|
|
50151
|
+
};
|
|
50152
|
+
export declare type GraphIntegrationMcpServerRequestNode = {
|
|
50153
|
+
__typename?: 'GraphIntegrationMcpServerRequestNode';
|
|
50154
|
+
comment?: Maybe<Scalars['String']['output']>;
|
|
50155
|
+
createdAt: Scalars['String']['output'];
|
|
50156
|
+
id: Scalars['ID']['output'];
|
|
50157
|
+
installedMcpServerConfigId?: Maybe<Scalars['ID']['output']>;
|
|
50158
|
+
lastRequestedAt: Scalars['String']['output'];
|
|
50159
|
+
requestCount: Scalars['Int']['output'];
|
|
50160
|
+
sourceDisplayName?: Maybe<Scalars['String']['output']>;
|
|
50161
|
+
sourceId: Scalars['ID']['output'];
|
|
50162
|
+
sourceType: GraphIntegrationMcpServerRequestSourceType;
|
|
50163
|
+
status: GraphIntegrationMcpServerRequestStatus;
|
|
50164
|
+
};
|
|
50165
|
+
export declare enum GraphIntegrationMcpServerRequestSourceType {
|
|
50166
|
+
GlobalMcpServer = "GLOBAL_MCP_SERVER"
|
|
50167
|
+
}
|
|
50168
|
+
export declare enum GraphIntegrationMcpServerRequestStatus {
|
|
50169
|
+
Installed = "INSTALLED",
|
|
50170
|
+
Open = "OPEN",
|
|
50171
|
+
Rejected = "REJECTED"
|
|
50172
|
+
}
|
|
50173
|
+
export declare type GraphIntegrationMcpServerRequestSubmitInput = {
|
|
50174
|
+
cloudId: Scalars['ID']['input'];
|
|
50175
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
50176
|
+
sourceId: Scalars['ID']['input'];
|
|
50177
|
+
sourceType: GraphIntegrationMcpServerRequestSourceType;
|
|
50178
|
+
};
|
|
50179
|
+
export declare type GraphIntegrationMcpServerRequestSubmitPayload = Payload & {
|
|
50180
|
+
__typename?: 'GraphIntegrationMcpServerRequestSubmitPayload';
|
|
50181
|
+
aggregateRequest?: Maybe<GraphIntegrationMcpServerRequestNode>;
|
|
50182
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50183
|
+
success: Scalars['Boolean']['output'];
|
|
50184
|
+
userRequest?: Maybe<GraphIntegrationMcpServerUserRequestNode>;
|
|
50185
|
+
};
|
|
50186
|
+
export declare type GraphIntegrationMcpServerUserRequestConnection = {
|
|
50187
|
+
__typename?: 'GraphIntegrationMcpServerUserRequestConnection';
|
|
50188
|
+
edges?: Maybe<Array<GraphIntegrationMcpServerUserRequestEdge>>;
|
|
50189
|
+
error?: Maybe<QueryError>;
|
|
50190
|
+
nodes?: Maybe<Array<GraphIntegrationMcpServerUserRequestNode>>;
|
|
50191
|
+
pageInfo: PageInfo;
|
|
50192
|
+
};
|
|
50193
|
+
export declare type GraphIntegrationMcpServerUserRequestEdge = {
|
|
50194
|
+
__typename?: 'GraphIntegrationMcpServerUserRequestEdge';
|
|
50195
|
+
cursor: Scalars['String']['output'];
|
|
50196
|
+
node?: Maybe<GraphIntegrationMcpServerUserRequestNode>;
|
|
50197
|
+
};
|
|
50198
|
+
export declare type GraphIntegrationMcpServerUserRequestNode = {
|
|
50199
|
+
__typename?: 'GraphIntegrationMcpServerUserRequestNode';
|
|
50200
|
+
aaid: Scalars['ID']['output'];
|
|
50201
|
+
comment?: Maybe<Scalars['String']['output']>;
|
|
50202
|
+
createdAt: Scalars['String']['output'];
|
|
50203
|
+
id: Scalars['ID']['output'];
|
|
50204
|
+
requestId: Scalars['ID']['output'];
|
|
50205
|
+
};
|
|
49867
50206
|
export declare type GraphIntegrationMcpTool = {
|
|
49868
50207
|
__typename?: 'GraphIntegrationMcpTool';
|
|
49869
50208
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -52996,6 +53335,8 @@ export declare type GraphStore = {
|
|
|
52996
53335
|
confluenceSpaceHasConfluenceFolderInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceFolderInverseConnection>;
|
|
52997
53336
|
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
52998
53337
|
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
53338
|
+
confluenceSpaceHasRelevantContentEntity?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityConnection>;
|
|
53339
|
+
confluenceSpaceHasRelevantContentEntityInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection>;
|
|
52999
53340
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
53000
53341
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
53001
53342
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -55557,6 +55898,22 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardInverseArgs
|
|
|
55557
55898
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55558
55899
|
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
55559
55900
|
};
|
|
55901
|
+
export declare type GraphStoreConfluenceSpaceHasRelevantContentEntityArgs = {
|
|
55902
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55903
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55904
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55905
|
+
id: Scalars['ID']['input'];
|
|
55906
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55907
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
55908
|
+
};
|
|
55909
|
+
export declare type GraphStoreConfluenceSpaceHasRelevantContentEntityInverseArgs = {
|
|
55910
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55911
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55912
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55913
|
+
id: Scalars['ID']['input'];
|
|
55914
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55915
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
55916
|
+
};
|
|
55560
55917
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
55561
55918
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55562
55919
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -64830,6 +65187,9 @@ export declare type GraphStoreConfluenceSpaceHasConfluenceFolderSortInput = {
|
|
|
64830
65187
|
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
64831
65188
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64832
65189
|
};
|
|
65190
|
+
export declare type GraphStoreConfluenceSpaceHasRelevantContentEntitySortInput = {
|
|
65191
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
65192
|
+
};
|
|
64833
65193
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
64834
65194
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
64835
65195
|
};
|
|
@@ -73668,6 +74028,34 @@ export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardIn
|
|
|
73668
74028
|
};
|
|
73669
74029
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion = ConfluenceSpace;
|
|
73670
74030
|
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
74031
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityConnection = HasPageInfo & {
|
|
74032
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityConnection';
|
|
74033
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityEdge>>>;
|
|
74034
|
+
pageInfo: PageInfo;
|
|
74035
|
+
};
|
|
74036
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityEdge = {
|
|
74037
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityEdge';
|
|
74038
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74039
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74040
|
+
id: Scalars['ID']['output'];
|
|
74041
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74042
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityUnion>;
|
|
74043
|
+
};
|
|
74044
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection = HasPageInfo & {
|
|
74045
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection';
|
|
74046
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge>>>;
|
|
74047
|
+
pageInfo: PageInfo;
|
|
74048
|
+
};
|
|
74049
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge = {
|
|
74050
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge';
|
|
74051
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74052
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74053
|
+
id: Scalars['ID']['output'];
|
|
74054
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74055
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion>;
|
|
74056
|
+
};
|
|
74057
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion = ConfluenceSpace;
|
|
74058
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasRelevantContentEntityUnion = DevOpsDocument | ExternalDocument;
|
|
73671
74059
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
73672
74060
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
73673
74061
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -85014,6 +85402,8 @@ export declare type GraphStoreV2 = {
|
|
|
85014
85402
|
confluenceSpaceHasConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasConfluencePageInverseConnection>;
|
|
85015
85403
|
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
85016
85404
|
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
85405
|
+
confluenceSpaceHasRelevantContentEntity?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityConnection>;
|
|
85406
|
+
confluenceSpaceHasRelevantContentEntityInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection>;
|
|
85017
85407
|
confluenceSpaceLinksJiraSpace?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceConnection>;
|
|
85018
85408
|
confluenceSpaceLinksJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceInverseConnection>;
|
|
85019
85409
|
contentEntityLinksEntity?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityConnection>;
|
|
@@ -87660,6 +88050,20 @@ export declare type GraphStoreV2ConfluenceSpaceHasConfluenceWhiteboardInverseArg
|
|
|
87660
88050
|
id: Scalars['ID']['input'];
|
|
87661
88051
|
sort?: InputMaybe<GraphStoreV2ConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
87662
88052
|
};
|
|
88053
|
+
export declare type GraphStoreV2ConfluenceSpaceHasRelevantContentEntityArgs = {
|
|
88054
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88055
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88056
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88057
|
+
id: Scalars['ID']['input'];
|
|
88058
|
+
sort?: InputMaybe<GraphStoreV2ConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
88059
|
+
};
|
|
88060
|
+
export declare type GraphStoreV2ConfluenceSpaceHasRelevantContentEntityInverseArgs = {
|
|
88061
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88062
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88063
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88064
|
+
id: Scalars['ID']['input'];
|
|
88065
|
+
sort?: InputMaybe<GraphStoreV2ConfluenceSpaceHasRelevantContentEntitySortInput>;
|
|
88066
|
+
};
|
|
87663
88067
|
export declare type GraphStoreV2ConfluenceSpaceLinksJiraSpaceArgs = {
|
|
87664
88068
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87665
88069
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91865,6 +92269,9 @@ export declare type GraphStoreV2ConfluenceSpaceHasConfluencePageSortInput = {
|
|
|
91865
92269
|
export declare type GraphStoreV2ConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
91866
92270
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91867
92271
|
};
|
|
92272
|
+
export declare type GraphStoreV2ConfluenceSpaceHasRelevantContentEntitySortInput = {
|
|
92273
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92274
|
+
};
|
|
91868
92275
|
export declare type GraphStoreV2ConfluenceSpaceLinksJiraSpaceSortInput = {
|
|
91869
92276
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91870
92277
|
};
|
|
@@ -99198,6 +99605,34 @@ export declare type GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboard
|
|
|
99198
99605
|
};
|
|
99199
99606
|
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion = ConfluenceSpace;
|
|
99200
99607
|
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
99608
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityConnection = HasPageInfo & {
|
|
99609
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityConnection';
|
|
99610
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityEdge>>>;
|
|
99611
|
+
pageInfo: PageInfo;
|
|
99612
|
+
};
|
|
99613
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityEdge = {
|
|
99614
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityEdge';
|
|
99615
|
+
createdAt: Scalars['DateTime']['output'];
|
|
99616
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
99617
|
+
id: Scalars['ID']['output'];
|
|
99618
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
99619
|
+
node?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityUnion>;
|
|
99620
|
+
};
|
|
99621
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection = HasPageInfo & {
|
|
99622
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseConnection';
|
|
99623
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge>>>;
|
|
99624
|
+
pageInfo: PageInfo;
|
|
99625
|
+
};
|
|
99626
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge = {
|
|
99627
|
+
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseEdge';
|
|
99628
|
+
createdAt: Scalars['DateTime']['output'];
|
|
99629
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
99630
|
+
id: Scalars['ID']['output'];
|
|
99631
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
99632
|
+
node?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion>;
|
|
99633
|
+
};
|
|
99634
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityInverseUnion = ConfluenceSpace;
|
|
99635
|
+
export declare type GraphStoreV2SimplifiedConfluenceSpaceHasRelevantContentEntityUnion = DevOpsDocument | ExternalDocument;
|
|
99201
99636
|
export declare type GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceConnection = HasPageInfo & {
|
|
99202
99637
|
__typename?: 'GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceConnection';
|
|
99203
99638
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceEdge>>>;
|
|
@@ -107147,6 +107582,7 @@ export declare type GravityViewTemplateInput = {
|
|
|
107147
107582
|
export declare type GravityViewTemplateMappingProposalsResult = GravityViewTemplateMappingProposalsSuccess | QueryError;
|
|
107148
107583
|
export declare type GravityViewTemplateMappingProposalsSuccess = {
|
|
107149
107584
|
__typename?: 'GravityViewTemplateMappingProposalsSuccess';
|
|
107585
|
+
conflictingFieldNames: Array<Scalars['String']['output']>;
|
|
107150
107586
|
proposals: GravityRefMappingProposals;
|
|
107151
107587
|
};
|
|
107152
107588
|
export declare type GravityViewTemplatesResult = GravityViewTemplatesSuccess | QueryError;
|
|
@@ -111139,19 +111575,6 @@ export declare type InvocationTokenForUiMetadata = {
|
|
|
111139
111575
|
__typename?: 'InvocationTokenForUIMetadata';
|
|
111140
111576
|
baseUrl: Scalars['String']['output'];
|
|
111141
111577
|
};
|
|
111142
|
-
export declare type InvokeAuxEffectsInput = {
|
|
111143
|
-
contextIds: Array<Scalars['ID']['input']>;
|
|
111144
|
-
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
111145
|
-
extensionDetails?: InputMaybe<ExtensionDetailsInput>;
|
|
111146
|
-
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
111147
|
-
payload: AuxEffectsInvocationPayload;
|
|
111148
|
-
};
|
|
111149
|
-
export declare type InvokeAuxEffectsResponse = Payload & {
|
|
111150
|
-
__typename?: 'InvokeAuxEffectsResponse';
|
|
111151
|
-
errors?: Maybe<Array<MutationError>>;
|
|
111152
|
-
result?: Maybe<AuxEffectsResult>;
|
|
111153
|
-
success: Scalars['Boolean']['output'];
|
|
111154
|
-
};
|
|
111155
111578
|
export declare type InvokeExtensionInput = {
|
|
111156
111579
|
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111157
111580
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -113918,6 +114341,14 @@ export declare type JiraBoardLocation = {
|
|
|
113918
114341
|
locationId?: InputMaybe<Scalars['String']['input']>;
|
|
113919
114342
|
locationType: JiraBoardLocationType;
|
|
113920
114343
|
};
|
|
114344
|
+
export declare type JiraBoardLocationModel = {
|
|
114345
|
+
__typename?: 'JiraBoardLocationModel';
|
|
114346
|
+
avatarURI?: Maybe<Scalars['String']['output']>;
|
|
114347
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
114348
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
114349
|
+
projectTypeKey?: Maybe<Scalars['String']['output']>;
|
|
114350
|
+
userLocationId?: Maybe<Scalars['ID']['output']>;
|
|
114351
|
+
};
|
|
113921
114352
|
export declare enum JiraBoardLocationType {
|
|
113922
114353
|
Project = "PROJECT",
|
|
113923
114354
|
User = "USER"
|
|
@@ -113942,6 +114373,7 @@ export declare enum JiraBoardType {
|
|
|
113942
114373
|
}
|
|
113943
114374
|
export declare type JiraBoardView = JiraView & Node & {
|
|
113944
114375
|
__typename?: 'JiraBoardView';
|
|
114376
|
+
board?: Maybe<JiraBoard>;
|
|
113945
114377
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113946
114378
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113947
114379
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -113976,6 +114408,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
113976
114408
|
isWorkflowsMigrationAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
113977
114409
|
issuePositions?: Maybe<Array<JiraBoardViewIssuePositions>>;
|
|
113978
114410
|
layout?: Maybe<JiraBoardViewLayout>;
|
|
114411
|
+
project?: Maybe<JiraProject>;
|
|
113979
114412
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
113980
114413
|
sprints?: Maybe<JiraSprintConnection>;
|
|
113981
114414
|
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
@@ -114676,6 +115109,7 @@ export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
|
114676
115109
|
boardAdmins?: Maybe<JiraBoardAdmins>;
|
|
114677
115110
|
boardCreator?: Maybe<User>;
|
|
114678
115111
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
115112
|
+
boardLocation?: Maybe<JiraBoardLocationModel>;
|
|
114679
115113
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
114680
115114
|
dimensions?: Maybe<Array<Maybe<JiraCfoDimension>>>;
|
|
114681
115115
|
metrics?: Maybe<Array<Maybe<JiraCfoMetric>>>;
|
|
@@ -121576,6 +122010,9 @@ export declare type JiraIssueFieldConnection = JiraListRowFieldConnection & {
|
|
|
121576
122010
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
121577
122011
|
};
|
|
121578
122012
|
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
122013
|
+
export declare type JiraIssueFieldCreateContextOption = {
|
|
122014
|
+
id: Scalars['ID']['output'];
|
|
122015
|
+
};
|
|
121579
122016
|
export declare type JiraIssueFieldEdge = JiraListRowFieldEdge & {
|
|
121580
122017
|
__typename?: 'JiraIssueFieldEdge';
|
|
121581
122018
|
cursor: Scalars['String']['output'];
|
|
@@ -124233,7 +124670,7 @@ export declare type JiraLabelsFieldPayload = Payload & {
|
|
|
124233
124670
|
field?: Maybe<JiraLabelsField>;
|
|
124234
124671
|
success: Scalars['Boolean']['output'];
|
|
124235
124672
|
};
|
|
124236
|
-
export declare type JiraLabelsForCreateField = {
|
|
124673
|
+
export declare type JiraLabelsForCreateField = JiraIssueFieldCreateContextOption & Node & {
|
|
124237
124674
|
__typename?: 'JiraLabelsForCreateField';
|
|
124238
124675
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
124239
124676
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -127507,6 +127944,13 @@ export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
|
127507
127944
|
playbook?: Maybe<JiraPlaybook>;
|
|
127508
127945
|
success: Scalars['Boolean']['output'];
|
|
127509
127946
|
};
|
|
127947
|
+
export declare type JiraPlaybookRuleIdsConnection = HasPageInfo & QueryPayload & {
|
|
127948
|
+
__typename?: 'JiraPlaybookRuleIdsConnection';
|
|
127949
|
+
errors?: Maybe<Array<QueryError>>;
|
|
127950
|
+
nodes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
127951
|
+
pageInfo: PageInfo;
|
|
127952
|
+
success: Scalars['Boolean']['output'];
|
|
127953
|
+
};
|
|
127510
127954
|
export declare enum JiraPlaybookScopeType {
|
|
127511
127955
|
Global = "GLOBAL",
|
|
127512
127956
|
Issue = "ISSUE",
|
|
@@ -130250,6 +130694,7 @@ export declare type JiraQueryLinkedIssuesArgs = {
|
|
|
130250
130694
|
hideIdeaLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130251
130695
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
130252
130696
|
shouldIncludeRemoteIssues?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130697
|
+
sortInput?: InputMaybe<JiraLinkedWorkItemsSortInput>;
|
|
130253
130698
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
130254
130699
|
};
|
|
130255
130700
|
export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
@@ -139159,11 +139604,6 @@ export declare enum JpdViewsServiceVisualizationType {
|
|
|
139159
139604
|
Timeline = "TIMELINE",
|
|
139160
139605
|
Tree = "TREE"
|
|
139161
139606
|
}
|
|
139162
|
-
export declare type JsmAgentWorkspaceLocations = {
|
|
139163
|
-
__typename?: 'JsmAgentWorkspaceLocations';
|
|
139164
|
-
errors?: Maybe<Array<QueryError>>;
|
|
139165
|
-
pageInfo: PageInfo;
|
|
139166
|
-
};
|
|
139167
139607
|
export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
139168
139608
|
__typename?: 'JsmChannelsConditionNode';
|
|
139169
139609
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -139176,7 +139616,8 @@ export declare type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
|
139176
139616
|
export declare enum JsmChannelsConnectionType {
|
|
139177
139617
|
Identitynow = "IDENTITYNOW",
|
|
139178
139618
|
Intune = "INTUNE",
|
|
139179
|
-
Okta = "OKTA"
|
|
139619
|
+
Okta = "OKTA",
|
|
139620
|
+
Salesforce = "SALESFORCE"
|
|
139180
139621
|
}
|
|
139181
139622
|
export declare type JsmChannelsConversationsByContainerAriResult = JsmChannelsOrchestratorConversationsConnection | QueryError;
|
|
139182
139623
|
export declare type JsmChannelsCustomPlanGraphAttribute = {
|
|
@@ -139469,11 +139910,22 @@ export declare type JsmChannelsRovoServiceAgentConfig = {
|
|
|
139469
139910
|
taskAgentsEnabled: Scalars['Int']['output'];
|
|
139470
139911
|
};
|
|
139471
139912
|
export declare type JsmChannelsRovoServiceAgentConfigResult = JsmChannelsRovoServiceAgentConfig | QueryError;
|
|
139913
|
+
export declare type JsmChannelsRovoServiceResolutionPlanGeneratedPayload = {
|
|
139914
|
+
__typename?: 'JsmChannelsRovoServiceResolutionPlanGeneratedPayload';
|
|
139915
|
+
hasGeneratedResolutionPlan: Scalars['Boolean']['output'];
|
|
139916
|
+
};
|
|
139917
|
+
export declare type JsmChannelsRovoServiceResolutionPlanGeneratedResult = JsmChannelsRovoServiceResolutionPlanGeneratedPayload | QueryError;
|
|
139472
139918
|
export declare enum JsmChannelsRuleEvaluationStrategy {
|
|
139473
139919
|
JqlFirst = "JQL_FIRST",
|
|
139474
139920
|
JqlOnly = "JQL_ONLY",
|
|
139475
139921
|
RequestTypeFirst = "REQUEST_TYPE_FIRST"
|
|
139476
139922
|
}
|
|
139923
|
+
export declare type JsmChannelsSalesforceTaskAgentConfiguration = {
|
|
139924
|
+
__typename?: 'JsmChannelsSalesforceTaskAgentConfiguration';
|
|
139925
|
+
accountId: Scalars['String']['output'];
|
|
139926
|
+
instanceUrl: Scalars['String']['output'];
|
|
139927
|
+
serviceKey: Scalars['String']['output'];
|
|
139928
|
+
};
|
|
139477
139929
|
export declare type JsmChannelsServiceAgentResolutionContentSource = {
|
|
139478
139930
|
__typename?: 'JsmChannelsServiceAgentResolutionContentSource';
|
|
139479
139931
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -139537,7 +139989,7 @@ export declare type JsmChannelsTaskAgent = {
|
|
|
139537
139989
|
displayName: Scalars['String']['output'];
|
|
139538
139990
|
status: JsmChannelsTaskAgentStatus;
|
|
139539
139991
|
};
|
|
139540
|
-
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration;
|
|
139992
|
+
export declare type JsmChannelsTaskAgentConfigurationDetails = JsmChannelsIdentityNowTaskAgentConfiguration | JsmChannelsMsIntuneTaskAgentConfiguration | JsmChannelsOktaTaskAgentConfiguration | JsmChannelsSalesforceTaskAgentConfiguration;
|
|
139541
139993
|
export declare type JsmChannelsTaskAgentConfigurationInput = {
|
|
139542
139994
|
configuration?: InputMaybe<Scalars['JSON']['input']>;
|
|
139543
139995
|
status: JsmChannelsTaskAgentStatus;
|
|
@@ -140752,6 +141204,10 @@ export declare type KitsuneCustomerNode = {
|
|
|
140752
141204
|
customer?: Maybe<CustomerServiceCsmCustomer>;
|
|
140753
141205
|
customerId: Scalars['ID']['output'];
|
|
140754
141206
|
};
|
|
141207
|
+
export declare type KitsuneDateRangeInput = {
|
|
141208
|
+
fromDate: Scalars['DateTime']['input'];
|
|
141209
|
+
toDate: Scalars['DateTime']['input'];
|
|
141210
|
+
};
|
|
140755
141211
|
export declare type KitsuneDateValue = {
|
|
140756
141212
|
__typename?: 'KitsuneDateValue';
|
|
140757
141213
|
_id: Scalars['ID']['output'];
|
|
@@ -140982,6 +141438,7 @@ export declare enum KitsuneJobType {
|
|
|
140982
141438
|
ImportFeedback = "IMPORT_FEEDBACK",
|
|
140983
141439
|
ImportOrganization = "IMPORT_ORGANIZATION",
|
|
140984
141440
|
ResyncFeedback = "RESYNC_FEEDBACK",
|
|
141441
|
+
ResyncInsights = "RESYNC_INSIGHTS",
|
|
140985
141442
|
SyncCsmProperties = "SYNC_CSM_PROPERTIES",
|
|
140986
141443
|
SyncCustomer = "SYNC_CUSTOMER"
|
|
140987
141444
|
}
|
|
@@ -143143,6 +143600,9 @@ export declare type LiveChatParticipantLeft = {
|
|
|
143143
143600
|
content?: Maybe<Scalars['String']['output']>;
|
|
143144
143601
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
143145
143602
|
};
|
|
143603
|
+
export declare type LiveChatSendTypingSignalInput = {
|
|
143604
|
+
chatAri: Scalars['ID']['input'];
|
|
143605
|
+
};
|
|
143146
143606
|
export declare type LiveChatSendUserMessageInput = {
|
|
143147
143607
|
chatAri: Scalars['ID']['input'];
|
|
143148
143608
|
content: Scalars['String']['input'];
|
|
@@ -143159,7 +143619,16 @@ export declare type LiveChatSystemMessage = {
|
|
|
143159
143619
|
id: Scalars['ID']['output'];
|
|
143160
143620
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
143161
143621
|
};
|
|
143162
|
-
export declare type
|
|
143622
|
+
export declare type LiveChatTypingIndicator = {
|
|
143623
|
+
__typename?: 'LiveChatTypingIndicator';
|
|
143624
|
+
accountAri?: Maybe<Scalars['ID']['output']>;
|
|
143625
|
+
};
|
|
143626
|
+
export declare type LiveChatTypingSignalPayload = Payload & {
|
|
143627
|
+
__typename?: 'LiveChatTypingSignalPayload';
|
|
143628
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143629
|
+
success: Scalars['Boolean']['output'];
|
|
143630
|
+
};
|
|
143631
|
+
export declare type LiveChatUpdate = LiveChatClosed | LiveChatParticipantJoined | LiveChatParticipantLeft | LiveChatStarted | LiveChatSystemMessage | LiveChatTypingIndicator | LiveChatUserMessage | QueryError;
|
|
143163
143632
|
export declare type LiveChatUserMessage = {
|
|
143164
143633
|
__typename?: 'LiveChatUserMessage';
|
|
143165
143634
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -146909,6 +147378,7 @@ export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
|
146909
147378
|
edition?: Maybe<Scalars['String']['output']>;
|
|
146910
147379
|
installed: Scalars['Boolean']['output'];
|
|
146911
147380
|
installedAppManageLink?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147381
|
+
installedAppManageLinks?: Maybe<MarketplaceStoreInstalledAppManageLinks>;
|
|
146912
147382
|
licenseActive: Scalars['Boolean']['output'];
|
|
146913
147383
|
licenseExpiryDate?: Maybe<Scalars['String']['output']>;
|
|
146914
147384
|
paidLicenseActiveOnParent: Scalars['Boolean']['output'];
|
|
@@ -146923,6 +147393,12 @@ export declare enum MarketplaceStoreInstalledAppManageLinkType {
|
|
|
146923
147393
|
GetStarted = "GET_STARTED",
|
|
146924
147394
|
Manage = "MANAGE"
|
|
146925
147395
|
}
|
|
147396
|
+
export declare type MarketplaceStoreInstalledAppManageLinks = {
|
|
147397
|
+
__typename?: 'MarketplaceStoreInstalledAppManageLinks';
|
|
147398
|
+
configureUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147399
|
+
getStartedUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147400
|
+
manageAppUrl?: Maybe<MarketplaceStoreInstalledAppManageLink>;
|
|
147401
|
+
};
|
|
146926
147402
|
export declare type MarketplaceStoreLayoutRegularSection = MarketplaceStoreLayoutSection & {
|
|
146927
147403
|
__typename?: 'MarketplaceStoreLayoutRegularSection';
|
|
146928
147404
|
backgroundImageUrl?: Maybe<MarketplaceStoreImageUrlVariants>;
|
|
@@ -146950,7 +147426,9 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
146950
147426
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
146951
147427
|
ExploreObjects = "EXPLORE_OBJECTS",
|
|
146952
147428
|
Hero = "HERO",
|
|
147429
|
+
NewestAiApps = "NEWEST_AI_APPS",
|
|
146953
147430
|
PickupWhereYouLeft = "PICKUP_WHERE_YOU_LEFT",
|
|
147431
|
+
ProductHero = "PRODUCT_HERO",
|
|
146954
147432
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
146955
147433
|
Spotlight = "SPOTLIGHT",
|
|
146956
147434
|
Statistics = "STATISTICS",
|
|
@@ -147239,6 +147717,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
147239
147717
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
147240
147718
|
StoreCategory = "STORE_CATEGORY",
|
|
147241
147719
|
StoreCollection = "STORE_COLLECTION",
|
|
147720
|
+
StoreProduct = "STORE_PRODUCT",
|
|
147242
147721
|
UnifiedStore = "UNIFIED_STORE"
|
|
147243
147722
|
}
|
|
147244
147723
|
export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
@@ -147404,6 +147883,20 @@ export declare enum MarketplaceStoreProductTagType {
|
|
|
147404
147883
|
Category = "CATEGORY",
|
|
147405
147884
|
Keywords = "KEYWORDS"
|
|
147406
147885
|
}
|
|
147886
|
+
export declare enum MarketplaceStoreProductType {
|
|
147887
|
+
Compass = "COMPASS",
|
|
147888
|
+
Confluence = "CONFLUENCE",
|
|
147889
|
+
Goal = "GOAL",
|
|
147890
|
+
JiraCustomerService = "JIRA_CUSTOMER_SERVICE",
|
|
147891
|
+
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
147892
|
+
JiraServiceDesk = "JIRA_SERVICE_DESK",
|
|
147893
|
+
JiraSoftware = "JIRA_SOFTWARE",
|
|
147894
|
+
JiraWorkManagement = "JIRA_WORK_MANAGEMENT",
|
|
147895
|
+
Loom = "LOOM",
|
|
147896
|
+
Opsgenie = "OPSGENIE",
|
|
147897
|
+
Statuspage = "STATUSPAGE",
|
|
147898
|
+
Townsquare = "TOWNSQUARE"
|
|
147899
|
+
}
|
|
147407
147900
|
export declare type MarketplaceStoreProperties = {
|
|
147408
147901
|
__typename?: 'MarketplaceStoreProperties';
|
|
147409
147902
|
formStatus: MarketplaceStoreFormStatus;
|
|
@@ -147455,6 +147948,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
147455
147948
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
147456
147949
|
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
147457
147950
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
147951
|
+
userSites?: Maybe<MarketplaceStoreUserSitesResult>;
|
|
147458
147952
|
watchedApps: MarketplaceStoreWatchedAppsResponse;
|
|
147459
147953
|
};
|
|
147460
147954
|
export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
|
|
@@ -147592,6 +148086,9 @@ export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
|
147592
148086
|
export declare type MarketplaceStoreQueryApiUserProfileArgs = {
|
|
147593
148087
|
userId: Scalars['String']['input'];
|
|
147594
148088
|
};
|
|
148089
|
+
export declare type MarketplaceStoreQueryApiUserSitesArgs = {
|
|
148090
|
+
input?: InputMaybe<MarketplaceStoreUserSitesInput>;
|
|
148091
|
+
};
|
|
147595
148092
|
export declare type MarketplaceStoreQueryApiWatchedAppsArgs = {
|
|
147596
148093
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
147597
148094
|
nextCursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -147759,6 +148256,11 @@ export declare type MarketplaceStoreSiteProduct = {
|
|
|
147759
148256
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
147760
148257
|
parentProduct?: InputMaybe<MarketplaceStoreInstallationTargetProduct>;
|
|
147761
148258
|
};
|
|
148259
|
+
export declare type MarketplaceStoreSiteProductEntry = {
|
|
148260
|
+
__typename?: 'MarketplaceStoreSiteProductEntry';
|
|
148261
|
+
displayName: Scalars['String']['output'];
|
|
148262
|
+
productType: MarketplaceStoreProductType;
|
|
148263
|
+
};
|
|
147762
148264
|
export declare type MarketplaceStoreThirdPartyDetails = {
|
|
147763
148265
|
__typename?: 'MarketplaceStoreThirdPartyDetails';
|
|
147764
148266
|
link: Scalars['String']['output'];
|
|
@@ -147838,6 +148340,43 @@ export declare type MarketplaceStoreUserProfileResponse = {
|
|
|
147838
148340
|
name: Scalars['String']['output'];
|
|
147839
148341
|
picture: Scalars['String']['output'];
|
|
147840
148342
|
};
|
|
148343
|
+
export declare type MarketplaceStoreUserSite = {
|
|
148344
|
+
__typename?: 'MarketplaceStoreUserSite';
|
|
148345
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
148346
|
+
cloudId: Scalars['String']['output'];
|
|
148347
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
148348
|
+
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
148349
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
148350
|
+
orgName?: Maybe<Scalars['String']['output']>;
|
|
148351
|
+
products: Array<MarketplaceStoreSiteProductEntry>;
|
|
148352
|
+
unitId?: Maybe<Scalars['String']['output']>;
|
|
148353
|
+
unitName?: Maybe<Scalars['String']['output']>;
|
|
148354
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
148355
|
+
};
|
|
148356
|
+
export declare enum MarketplaceStoreUserSitesContext {
|
|
148357
|
+
Emcee = "EMCEE",
|
|
148358
|
+
Store = "STORE"
|
|
148359
|
+
}
|
|
148360
|
+
export declare type MarketplaceStoreUserSitesInput = {
|
|
148361
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
148362
|
+
context?: InputMaybe<MarketplaceStoreUserSitesContext>;
|
|
148363
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
148364
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
148365
|
+
productFilter?: InputMaybe<Array<MarketplaceStoreProductType>>;
|
|
148366
|
+
};
|
|
148367
|
+
export declare type MarketplaceStoreUserSitesPageInfo = {
|
|
148368
|
+
__typename?: 'MarketplaceStoreUserSitesPageInfo';
|
|
148369
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
148370
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
148371
|
+
totalSites: Scalars['Int']['output'];
|
|
148372
|
+
};
|
|
148373
|
+
export declare type MarketplaceStoreUserSitesResult = {
|
|
148374
|
+
__typename?: 'MarketplaceStoreUserSitesResult';
|
|
148375
|
+
context: MarketplaceStoreUserSitesContext;
|
|
148376
|
+
hasErrors: Scalars['Boolean']['output'];
|
|
148377
|
+
pageInfo: MarketplaceStoreUserSitesPageInfo;
|
|
148378
|
+
sites: Array<MarketplaceStoreUserSite>;
|
|
148379
|
+
};
|
|
147841
148380
|
export declare type MarketplaceStoreWatchedAppsResponse = {
|
|
147842
148381
|
__typename?: 'MarketplaceStoreWatchedAppsResponse';
|
|
147843
148382
|
limit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -151503,6 +152042,7 @@ export declare type MercuryMutationApi = {
|
|
|
151503
152042
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
151504
152043
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
151505
152044
|
reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
152045
|
+
rerankFocusAreas?: Maybe<MercuryRerankFocusAreasPayload>;
|
|
151506
152046
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
151507
152047
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
151508
152048
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -151618,6 +152158,9 @@ export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
|
151618
152158
|
export declare type MercuryMutationApiReorderFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
151619
152159
|
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
151620
152160
|
};
|
|
152161
|
+
export declare type MercuryMutationApiRerankFocusAreasArgs = {
|
|
152162
|
+
input: MercuryRerankFocusAreasInput;
|
|
152163
|
+
};
|
|
151621
152164
|
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
151622
152165
|
input: MercurySetFocusAreaCustomFieldInput;
|
|
151623
152166
|
};
|
|
@@ -153298,6 +153841,14 @@ export declare type MercuryRankedChangeProposal = {
|
|
|
153298
153841
|
changeProposalsViewId: Scalars['ID']['output'];
|
|
153299
153842
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
153300
153843
|
};
|
|
153844
|
+
export declare enum MercuryRankingContainerType {
|
|
153845
|
+
ParentFocusArea = "PARENT_FOCUS_AREA",
|
|
153846
|
+
Workspace = "WORKSPACE"
|
|
153847
|
+
}
|
|
153848
|
+
export declare enum MercuryRankingGroupType {
|
|
153849
|
+
Prioritized = "PRIORITIZED",
|
|
153850
|
+
Unprioritized = "UNPRIORITIZED"
|
|
153851
|
+
}
|
|
153301
153852
|
export declare type MercuryRecreateOrganizationViewOrganizationsInput = {
|
|
153302
153853
|
id: Scalars['ID']['input'];
|
|
153303
153854
|
organizationIds: Array<Scalars['ID']['input']>;
|
|
@@ -153463,6 +154014,19 @@ export declare type MercuryRequestPositionsChangeInput = {
|
|
|
153463
154014
|
positionsAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
153464
154015
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
153465
154016
|
};
|
|
154017
|
+
export declare type MercuryRerankFocusAreasInput = {
|
|
154018
|
+
afterFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
154019
|
+
containerId: Scalars['ID']['input'];
|
|
154020
|
+
containerType: MercuryRankingContainerType;
|
|
154021
|
+
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
154022
|
+
groupType: MercuryRankingGroupType;
|
|
154023
|
+
};
|
|
154024
|
+
export declare type MercuryRerankFocusAreasPayload = Payload & {
|
|
154025
|
+
__typename?: 'MercuryRerankFocusAreasPayload';
|
|
154026
|
+
errors?: Maybe<Array<MutationError>>;
|
|
154027
|
+
focusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
154028
|
+
success: Scalars['Boolean']['output'];
|
|
154029
|
+
};
|
|
153466
154030
|
export declare type MercuryRestrictedChangeProposal = {
|
|
153467
154031
|
__typename?: 'MercuryRestrictedChangeProposal';
|
|
153468
154032
|
id: Scalars['ID']['output'];
|
|
@@ -155800,6 +156364,7 @@ export declare type Mutation = {
|
|
|
155800
156364
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
155801
156365
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
155802
156366
|
agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
|
|
156367
|
+
agentWorkspace_updateSkillMappingsInProject?: Maybe<AgentWorkspaceUpdateSkillMappingsInProjectPayload>;
|
|
155803
156368
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
155804
156369
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
155805
156370
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
@@ -155834,6 +156399,7 @@ export declare type Mutation = {
|
|
|
155834
156399
|
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
155835
156400
|
assetsDM_createDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
155836
156401
|
assetsDM_createDefaultCleansingRule?: Maybe<AssetsDmCreateDefaultCleansingRuleResponse>;
|
|
156402
|
+
assetsDM_createJobSchedule?: Maybe<AssetsDmJobScheduleMutationResponse>;
|
|
155837
156403
|
assetsDM_createObjectAttribute?: Maybe<AssetsDmCreateObjectAttributeResponse>;
|
|
155838
156404
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
155839
156405
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
@@ -155854,6 +156420,7 @@ export declare type Mutation = {
|
|
|
155854
156420
|
assetsDM_deleteDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
155855
156421
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
155856
156422
|
assetsDM_deleteDefaultCleansingRule?: Maybe<AssetsDmDeleteDefaultCleansingRuleResponse>;
|
|
156423
|
+
assetsDM_deleteJobSchedule?: Maybe<AssetsDmJobScheduleMutationResponse>;
|
|
155857
156424
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
155858
156425
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
155859
156426
|
assetsDM_dissociateObjectTag?: Maybe<AssetsDmObjectTagDissociateResponse>;
|
|
@@ -155862,6 +156429,7 @@ export declare type Mutation = {
|
|
|
155862
156429
|
assetsDM_editDataDictionaryGroupValue?: Maybe<AssetsDmEditDataDictionaryGroupValueResponse>;
|
|
155863
156430
|
assetsDM_editDateFormat?: Maybe<AssetsDmDateFormatMutationResponse>;
|
|
155864
156431
|
assetsDM_editDefaultAttributeMapping?: Maybe<AssetsDmEditDefaultAttributeMappingResponse>;
|
|
156432
|
+
assetsDM_editJobSchedule?: Maybe<AssetsDmJobScheduleMutationResponse>;
|
|
155865
156433
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
155866
156434
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
155867
156435
|
assetsDM_importDataDictionary?: Maybe<AssetsDmImportDataDictionaryResponse>;
|
|
@@ -156430,6 +156998,7 @@ export declare type Mutation = {
|
|
|
156430
156998
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
156431
156999
|
graphIntegration_mcpAdminManagementUpdateMcpRegistration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpRegistrationPayload>;
|
|
156432
157000
|
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
157001
|
+
graphIntegration_mcpServerRequestSubmit?: Maybe<GraphIntegrationMcpServerRequestSubmitPayload>;
|
|
156433
157002
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
156434
157003
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
156435
157004
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
@@ -156459,7 +157028,6 @@ export declare type Mutation = {
|
|
|
156459
157028
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
156460
157029
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
156461
157030
|
installApp?: Maybe<AppInstallationResponse>;
|
|
156462
|
-
invokeAuxEffects?: Maybe<InvokeAuxEffectsResponse>;
|
|
156463
157031
|
invokeExtension?: Maybe<InvokeExtensionResponse>;
|
|
156464
157032
|
invokePolarisObject?: Maybe<InvokePolarisObjectPayload>;
|
|
156465
157033
|
jira?: Maybe<JiraMutation>;
|
|
@@ -156614,7 +157182,7 @@ export declare type Mutation = {
|
|
|
156614
157182
|
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
156615
157183
|
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
156616
157184
|
jpdViewsService_updateGlobalViewV3?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
156617
|
-
|
|
157185
|
+
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
156618
157186
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
156619
157187
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
156620
157188
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
@@ -156651,6 +157219,7 @@ export declare type Mutation = {
|
|
|
156651
157219
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
156652
157220
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
156653
157221
|
kitsune_resyncFeedback?: Maybe<KitsuneJob>;
|
|
157222
|
+
kitsune_resyncInsights?: Maybe<KitsuneJob>;
|
|
156654
157223
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
156655
157224
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
156656
157225
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
@@ -156670,6 +157239,7 @@ export declare type Mutation = {
|
|
|
156670
157239
|
knowledgeBase_updateSourceViewPermission?: Maybe<KnowledgeBaseUpdateSourceViewPermissionResponse>;
|
|
156671
157240
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
156672
157241
|
likeContent?: Maybe<LikeContentPayload>;
|
|
157242
|
+
liveChat_sendTypingSignal?: Maybe<LiveChatTypingSignalPayload>;
|
|
156673
157243
|
liveChat_sendUserMessage?: Maybe<LiveChatUserMessagePayload>;
|
|
156674
157244
|
loom_acceptOrganizationInvite?: Maybe<LoomAcceptOrganizationInvitation>;
|
|
156675
157245
|
loom_deleteVideos?: Maybe<LoomDeleteVideo>;
|
|
@@ -156970,6 +157540,8 @@ export declare type Mutation = {
|
|
|
156970
157540
|
startSprint?: Maybe<SprintResponse>;
|
|
156971
157541
|
studio_createDraftBuild?: Maybe<StudioCreateDraftBuildPayload>;
|
|
156972
157542
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
157543
|
+
tags_createTag?: Maybe<TagsResponse>;
|
|
157544
|
+
tags_updateTag?: Maybe<TagsResponse>;
|
|
156973
157545
|
team?: Maybe<TeamMutation>;
|
|
156974
157546
|
templateMigration?: Maybe<TemplateMigration>;
|
|
156975
157547
|
templatize?: Maybe<Scalars['ID']['output']>;
|
|
@@ -157460,6 +158032,9 @@ export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
|
157460
158032
|
export declare type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
|
|
157461
158033
|
input: AgentWorkspaceSkillCategoryUpdateInput;
|
|
157462
158034
|
};
|
|
158035
|
+
export declare type MutationAgentWorkspace_UpdateSkillMappingsInProjectArgs = {
|
|
158036
|
+
input: AgentWorkspaceUpdateSkillMappingsInProjectInput;
|
|
158037
|
+
};
|
|
157463
158038
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
157464
158039
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
157465
158040
|
};
|
|
@@ -157590,6 +158165,12 @@ export declare type MutationAssetsDm_CreateDefaultCleansingRuleArgs = {
|
|
|
157590
158165
|
input: AssetsDmCreateDefaultCleansingRuleInput;
|
|
157591
158166
|
workspaceId: Scalars['ID']['input'];
|
|
157592
158167
|
};
|
|
158168
|
+
export declare type MutationAssetsDm_CreateJobScheduleArgs = {
|
|
158169
|
+
cloudId: Scalars['ID']['input'];
|
|
158170
|
+
input: AssetsDmJobScheduleInput;
|
|
158171
|
+
jobId: Scalars['ID']['input'];
|
|
158172
|
+
workspaceId: Scalars['ID']['input'];
|
|
158173
|
+
};
|
|
157593
158174
|
export declare type MutationAssetsDm_CreateObjectAttributeArgs = {
|
|
157594
158175
|
cloudId: Scalars['ID']['input'];
|
|
157595
158176
|
payload: AssetsDmCreateObjectAttributeInput;
|
|
@@ -157702,6 +158283,11 @@ export declare type MutationAssetsDm_DeleteDefaultCleansingRuleArgs = {
|
|
|
157702
158283
|
input: AssetsDmDeleteDefaultCleansingRuleInput;
|
|
157703
158284
|
workspaceId: Scalars['ID']['input'];
|
|
157704
158285
|
};
|
|
158286
|
+
export declare type MutationAssetsDm_DeleteJobScheduleArgs = {
|
|
158287
|
+
cloudId: Scalars['ID']['input'];
|
|
158288
|
+
jobId: Scalars['ID']['input'];
|
|
158289
|
+
workspaceId: Scalars['ID']['input'];
|
|
158290
|
+
};
|
|
157705
158291
|
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
157706
158292
|
cloudId: Scalars['ID']['input'];
|
|
157707
158293
|
tagId: Scalars['ID']['input'];
|
|
@@ -157742,6 +158328,12 @@ export declare type MutationAssetsDm_EditDefaultAttributeMappingArgs = {
|
|
|
157742
158328
|
payload: AssetsDmEditDefaultAttributeMappingInput;
|
|
157743
158329
|
workspaceId: Scalars['ID']['input'];
|
|
157744
158330
|
};
|
|
158331
|
+
export declare type MutationAssetsDm_EditJobScheduleArgs = {
|
|
158332
|
+
cloudId: Scalars['ID']['input'];
|
|
158333
|
+
input: AssetsDmJobScheduleInput;
|
|
158334
|
+
jobId: Scalars['ID']['input'];
|
|
158335
|
+
workspaceId: Scalars['ID']['input'];
|
|
158336
|
+
};
|
|
157745
158337
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
157746
158338
|
cloudId: Scalars['ID']['input'];
|
|
157747
158339
|
input: Array<AssetsDmObjectTagEditInput>;
|
|
@@ -159710,6 +160302,9 @@ export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpRegistra
|
|
|
159710
160302
|
export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
|
|
159711
160303
|
input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
|
|
159712
160304
|
};
|
|
160305
|
+
export declare type MutationGraphIntegration_McpServerRequestSubmitArgs = {
|
|
160306
|
+
input: GraphIntegrationMcpServerRequestSubmitInput;
|
|
160307
|
+
};
|
|
159713
160308
|
export declare type MutationGraphIntegration_RemoveTwgCapabilityContainerArgs = {
|
|
159714
160309
|
input: GraphIntegrationRemoveTwgCapabilityContainerInput;
|
|
159715
160310
|
};
|
|
@@ -159796,9 +160391,6 @@ export declare type MutationHome_RemoveTagsArgs = {
|
|
|
159796
160391
|
export declare type MutationInstallAppArgs = {
|
|
159797
160392
|
input: AppInstallationInput;
|
|
159798
160393
|
};
|
|
159799
|
-
export declare type MutationInvokeAuxEffectsArgs = {
|
|
159800
|
-
input: InvokeAuxEffectsInput;
|
|
159801
|
-
};
|
|
159802
160394
|
export declare type MutationInvokeExtensionArgs = {
|
|
159803
160395
|
input: InvokeExtensionInput;
|
|
159804
160396
|
};
|
|
@@ -160442,6 +161034,11 @@ export declare type MutationKitsune_RemoveViewArgs = {
|
|
|
160442
161034
|
viewAri: Scalars['ID']['input'];
|
|
160443
161035
|
};
|
|
160444
161036
|
export declare type MutationKitsune_ResyncFeedbackArgs = {
|
|
161037
|
+
dateRange?: InputMaybe<KitsuneDateRangeInput>;
|
|
161038
|
+
rebuildEmbeddings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
161039
|
+
workspaceAri: Scalars['ID']['input'];
|
|
161040
|
+
};
|
|
161041
|
+
export declare type MutationKitsune_ResyncInsightsArgs = {
|
|
160445
161042
|
workspaceAri: Scalars['ID']['input'];
|
|
160446
161043
|
};
|
|
160447
161044
|
export declare type MutationKitsune_SyncCsmPropertiesArgs = {
|
|
@@ -160535,6 +161132,9 @@ export declare type MutationKnowledgeBase_UpdateSourceViewPermissionArgs = {
|
|
|
160535
161132
|
export declare type MutationLikeContentArgs = {
|
|
160536
161133
|
input: LikeContentInput;
|
|
160537
161134
|
};
|
|
161135
|
+
export declare type MutationLiveChat_SendTypingSignalArgs = {
|
|
161136
|
+
liveChatSendTypingSignalInput: LiveChatSendTypingSignalInput;
|
|
161137
|
+
};
|
|
160538
161138
|
export declare type MutationLiveChat_SendUserMessageArgs = {
|
|
160539
161139
|
liveChatSendUserMessageInput: LiveChatSendUserMessageInput;
|
|
160540
161140
|
};
|
|
@@ -161488,6 +162088,15 @@ export declare type MutationStudio_CreateDraftBuildArgs = {
|
|
|
161488
162088
|
export declare type MutationSubscribeToAppArgs = {
|
|
161489
162089
|
input: AppSubscribeInput;
|
|
161490
162090
|
};
|
|
162091
|
+
export declare type MutationTags_CreateTagArgs = {
|
|
162092
|
+
input: TagsCreateInput;
|
|
162093
|
+
kind: Scalars['String']['input'];
|
|
162094
|
+
};
|
|
162095
|
+
export declare type MutationTags_UpdateTagArgs = {
|
|
162096
|
+
input: TagsUpdateInput;
|
|
162097
|
+
kind: Scalars['String']['input'];
|
|
162098
|
+
tagId: Scalars['String']['input'];
|
|
162099
|
+
};
|
|
161491
162100
|
export declare type MutationTemplateMigrationArgs = {
|
|
161492
162101
|
spaceKey: Scalars['String']['input'];
|
|
161493
162102
|
};
|
|
@@ -164006,6 +164615,7 @@ export declare enum PolarisTimelineTodayMarker {
|
|
|
164006
164615
|
}
|
|
164007
164616
|
export declare type PolarisTreeConfig = {
|
|
164008
164617
|
__typename?: 'PolarisTreeConfig';
|
|
164618
|
+
allowMultipleParents?: Maybe<Scalars['Boolean']['output']>;
|
|
164009
164619
|
defaultFields?: Maybe<Array<PolarisIdeaField>>;
|
|
164010
164620
|
hierarchy?: Maybe<Array<PolarisTreeHierarchyItem>>;
|
|
164011
164621
|
mode?: Maybe<PolarisTreeMode>;
|
|
@@ -164380,6 +164990,30 @@ export declare type PrivacyEnhancingTechniques = {
|
|
|
164380
164990
|
arePrivacyEnhancingTechniquesSupported: Scalars['Boolean']['output'];
|
|
164381
164991
|
privacyEnhancingTechniquesSupported?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
164382
164992
|
};
|
|
164993
|
+
export declare type ProactiveAiEchoEdge = {
|
|
164994
|
+
__typename?: 'ProactiveAiEchoEdge';
|
|
164995
|
+
cursor: Scalars['String']['output'];
|
|
164996
|
+
node?: Maybe<ProactiveAiEchoMessage>;
|
|
164997
|
+
};
|
|
164998
|
+
export declare type ProactiveAiEchoMessage = {
|
|
164999
|
+
__typename?: 'ProactiveAiEchoMessage';
|
|
165000
|
+
index: Scalars['Int']['output'];
|
|
165001
|
+
originalMessage: Scalars['String']['output'];
|
|
165002
|
+
};
|
|
165003
|
+
export declare type ProactiveAiEchoResponse = {
|
|
165004
|
+
__typename?: 'ProactiveAiEchoResponse';
|
|
165005
|
+
message: Scalars['String']['output'];
|
|
165006
|
+
paginatedResults?: Maybe<ProactiveAiEchoResultsConnection>;
|
|
165007
|
+
timestamp: Scalars['String']['output'];
|
|
165008
|
+
userAccountId: Scalars['String']['output'];
|
|
165009
|
+
};
|
|
165010
|
+
export declare type ProactiveAiEchoResultsConnection = {
|
|
165011
|
+
__typename?: 'ProactiveAiEchoResultsConnection';
|
|
165012
|
+
edges?: Maybe<Array<ProactiveAiEchoEdge>>;
|
|
165013
|
+
errors?: Maybe<Array<QueryError>>;
|
|
165014
|
+
pageInfo: PageInfo;
|
|
165015
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
165016
|
+
};
|
|
164383
165017
|
export declare enum Product {
|
|
164384
165018
|
Confluence = "CONFLUENCE"
|
|
164385
165019
|
}
|
|
@@ -164896,6 +165530,8 @@ export declare type Query = {
|
|
|
164896
165530
|
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
164897
165531
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
164898
165532
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
165533
|
+
aiCoreApi_fetchRsaEmployeeTickets?: Maybe<AiCoreApiRsaEmployeeTicketsResult>;
|
|
165534
|
+
aiCoreApi_fetchRsaFunnelMetrics?: Maybe<AiCoreApiRsaFunnelMetricsResult>;
|
|
164899
165535
|
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
164900
165536
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
164901
165537
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
@@ -164905,8 +165541,9 @@ export declare type Query = {
|
|
|
164905
165541
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
164906
165542
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
164907
165543
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
164908
|
-
aiops_investigationById?: Maybe<
|
|
165544
|
+
aiops_investigationById?: Maybe<AiOpsInvestigationQueryResult>;
|
|
164909
165545
|
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
165546
|
+
aiplanner_getAllPlans?: Maybe<AiPlannerPlanConnection>;
|
|
164910
165547
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
164911
165548
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
164912
165549
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -165004,6 +165641,9 @@ export declare type Query = {
|
|
|
165004
165641
|
assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
|
|
165005
165642
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
165006
165643
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
165644
|
+
assetsVertical_hardwareCountByStatus?: Maybe<AssetsVerticalHardwareCountByStatusResult>;
|
|
165645
|
+
assetsVertical_hardwareObjectTypes?: Maybe<AssetsVerticalHardwareObjectTypesResult>;
|
|
165646
|
+
assetsVertical_hardwareObjects?: Maybe<AssetsVerticalHardwareObjectsResult>;
|
|
165007
165647
|
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
165008
165648
|
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
165009
165649
|
assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
|
|
@@ -165055,6 +165695,8 @@ export declare type Query = {
|
|
|
165055
165695
|
avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
|
|
165056
165696
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
165057
165697
|
avp_getDashboardIdBySlug?: Maybe<AvpGetDashboardIdBySlugPayload>;
|
|
165698
|
+
avp_getDashboardIdentityAccess?: Maybe<AvpDashboardIdentityAccess>;
|
|
165699
|
+
avp_getDashboardResourcePermission?: Maybe<AvpDashboardResourcePermission>;
|
|
165058
165700
|
avp_getDashboardTemplateJson?: Maybe<Scalars['String']['output']>;
|
|
165059
165701
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
165060
165702
|
avp_getDashboardsByAris?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
@@ -165399,6 +166041,7 @@ export declare type Query = {
|
|
|
165399
166041
|
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
165400
166042
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
165401
166043
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
166044
|
+
csm_liveChatAgents?: Maybe<CustomerServiceLiveChatAgentConnection>;
|
|
165402
166045
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
165403
166046
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
165404
166047
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
@@ -165533,6 +166176,7 @@ export declare type Query = {
|
|
|
165533
166176
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
165534
166177
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
165535
166178
|
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
166179
|
+
goals_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
165536
166180
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
165537
166181
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
165538
166182
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
@@ -165542,6 +166186,7 @@ export declare type Query = {
|
|
|
165542
166186
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
165543
166187
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
165544
166188
|
goals_search?: Maybe<TownsquareGoalConnection>;
|
|
166189
|
+
graphInference_getRelatedRepos?: Maybe<GraphInferenceGetRelatedReposResponse>;
|
|
165545
166190
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
165546
166191
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
165547
166192
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -165550,6 +166195,8 @@ export declare type Query = {
|
|
|
165550
166195
|
graphIntegration_mcpAdminManagementMcpServerMetaData?: Maybe<GraphIntegrationMcpAdminManagementMcpServerMetaData>;
|
|
165551
166196
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
165552
166197
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
166198
|
+
graphIntegration_mcpServerRequests?: Maybe<GraphIntegrationMcpServerRequestConnection>;
|
|
166199
|
+
graphIntegration_mcpServerUserRequests?: Maybe<GraphIntegrationMcpServerUserRequestConnection>;
|
|
165553
166200
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
165554
166201
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
165555
166202
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
@@ -165677,7 +166324,7 @@ export declare type Query = {
|
|
|
165677
166324
|
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
165678
166325
|
jpdViewsService_globalViewsByIdV2?: Maybe<Array<Maybe<JpdViewsServiceGlobalView2>>>;
|
|
165679
166326
|
jpdViewsService_hydrateUser?: Maybe<JpdViewsServiceUserHydrationExample>;
|
|
165680
|
-
|
|
166327
|
+
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
165681
166328
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
165682
166329
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
165683
166330
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
@@ -165685,6 +166332,7 @@ export declare type Query = {
|
|
|
165685
166332
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
165686
166333
|
jsmChannels_getRovoAgentsByProject?: Maybe<JsmChannelsRovoAgentsByProjectResult>;
|
|
165687
166334
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
166335
|
+
jsmChannels_hasRovoServiceResolutionPlanGenerated?: Maybe<JsmChannelsRovoServiceResolutionPlanGeneratedResult>;
|
|
165688
166336
|
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
165689
166337
|
jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
|
|
165690
166338
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
@@ -165838,6 +166486,7 @@ export declare type Query = {
|
|
|
165838
166486
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
165839
166487
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
165840
166488
|
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
166489
|
+
playbook_jiraPlaybookRuleIdsForProject?: Maybe<JiraPlaybookRuleIdsConnection>;
|
|
165841
166490
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
165842
166491
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
165843
166492
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
@@ -165864,6 +166513,7 @@ export declare type Query = {
|
|
|
165864
166513
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
165865
166514
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
165866
166515
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
166516
|
+
proactiveAi_echo?: Maybe<ProactiveAiEchoResponse>;
|
|
165867
166517
|
productListing?: Maybe<ProductListingResult>;
|
|
165868
166518
|
productListings: Array<ProductListingResult>;
|
|
165869
166519
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
@@ -165878,6 +166528,7 @@ export declare type Query = {
|
|
|
165878
166528
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
165879
166529
|
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
165880
166530
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
166531
|
+
projects_explainSearch?: Maybe<TownsquareSearchExplanation>;
|
|
165881
166532
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
165882
166533
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
165883
166534
|
projects_searchJiraWorkItemsToLink?: Maybe<TownsquareJiraWorkItemConnection>;
|
|
@@ -166074,6 +166725,9 @@ export declare type Query = {
|
|
|
166074
166725
|
supportInquiry_channelsIdentityHash?: Maybe<Scalars['String']['output']>;
|
|
166075
166726
|
supportInquiry_channelsIdentityHashByClientName?: Maybe<Scalars['String']['output']>;
|
|
166076
166727
|
supportInquiry_userContext?: Maybe<SupportInquiryUserContext>;
|
|
166728
|
+
tags_getTag?: Maybe<TagsResponse>;
|
|
166729
|
+
tags_getTagByNameKindOrg?: Maybe<TagsResponse>;
|
|
166730
|
+
tags_listTags?: Maybe<TagsListResponse>;
|
|
166077
166731
|
team?: Maybe<TeamQuery>;
|
|
166078
166732
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
166079
166733
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
@@ -166123,6 +166777,7 @@ export declare type Query = {
|
|
|
166123
166777
|
userWithContentRestrictions?: Maybe<UserWithRestrictions>;
|
|
166124
166778
|
users?: Maybe<Array<User>>;
|
|
166125
166779
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
166780
|
+
uts_allowanceExemptions?: Maybe<UtsAllowanceExemptionList>;
|
|
166126
166781
|
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
166127
166782
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
166128
166783
|
validatePageCopy?: Maybe<ValidatePageCopyPayload>;
|
|
@@ -166860,6 +167515,7 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
166860
167515
|
export declare type QueryAgentWorkspace_DraftedRoutingTableEntriesArgs = {
|
|
166861
167516
|
cloudId: Scalars['ID']['input'];
|
|
166862
167517
|
projectKey: Scalars['String']['input'];
|
|
167518
|
+
serviceFieldId: Scalars['String']['input'];
|
|
166863
167519
|
};
|
|
166864
167520
|
export declare type QueryAgentWorkspace_DraftedRoutingTableStatusArgs = {
|
|
166865
167521
|
cloudId: Scalars['ID']['input'];
|
|
@@ -166958,6 +167614,7 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
|
166958
167614
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166959
167615
|
cloudId: Scalars['ID']['input'];
|
|
166960
167616
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167617
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
166961
167618
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
166962
167619
|
};
|
|
166963
167620
|
export declare type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
@@ -167007,8 +167664,19 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
167007
167664
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
167008
167665
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
167009
167666
|
};
|
|
167667
|
+
export declare type QueryAiCoreApi_FetchRsaEmployeeTicketsArgs = {
|
|
167668
|
+
accountIds: Array<Scalars['ID']['input']>;
|
|
167669
|
+
jobId: Scalars['ID']['input'];
|
|
167670
|
+
projectAri: Scalars['ID']['input'];
|
|
167671
|
+
};
|
|
167672
|
+
export declare type QueryAiCoreApi_FetchRsaFunnelMetricsArgs = {
|
|
167673
|
+
durationInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
167674
|
+
jobId: Scalars['ID']['input'];
|
|
167675
|
+
projectAri: Scalars['ID']['input'];
|
|
167676
|
+
};
|
|
167010
167677
|
export declare type QueryAiCoreApi_FetchRsaReportArgs = {
|
|
167011
167678
|
jobId: Scalars['ID']['input'];
|
|
167679
|
+
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
167012
167680
|
queryTypes?: InputMaybe<Array<AiCoreApiRsaQueryType>>;
|
|
167013
167681
|
};
|
|
167014
167682
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
@@ -167052,6 +167720,12 @@ export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
|
167052
167720
|
entityId: Scalars['ID']['input'];
|
|
167053
167721
|
entityType: AiOpsInvestigationSourceEntityType;
|
|
167054
167722
|
};
|
|
167723
|
+
export declare type QueryAiplanner_GetAllPlansArgs = {
|
|
167724
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
167725
|
+
cloudId: Scalars['String']['input'];
|
|
167726
|
+
filter?: InputMaybe<GetAllPlansFilterInput>;
|
|
167727
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167728
|
+
};
|
|
167055
167729
|
export declare type QueryAllIndividualSpacesArgs = {
|
|
167056
167730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167057
167731
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -167445,6 +168119,7 @@ export declare type QueryAssetsDm_ObjectClassMetadataArgs = {
|
|
|
167445
168119
|
};
|
|
167446
168120
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
167447
168121
|
cloudId: Scalars['ID']['input'];
|
|
168122
|
+
objectName?: InputMaybe<Scalars['String']['input']>;
|
|
167448
168123
|
workspaceId: Scalars['ID']['input'];
|
|
167449
168124
|
};
|
|
167450
168125
|
export declare type QueryAssetsDm_ObjectDetailArgs = {
|
|
@@ -167599,6 +168274,18 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
167599
168274
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
167600
168275
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
167601
168276
|
};
|
|
168277
|
+
export declare type QueryAssetsVertical_HardwareCountByStatusArgs = {
|
|
168278
|
+
cloudId: Scalars['ID']['input'];
|
|
168279
|
+
input: AssetsVerticalHardwareCountByStatusInput;
|
|
168280
|
+
};
|
|
168281
|
+
export declare type QueryAssetsVertical_HardwareObjectTypesArgs = {
|
|
168282
|
+
cloudId: Scalars['ID']['input'];
|
|
168283
|
+
input: AssetsVerticalHardwareObjectTypesInput;
|
|
168284
|
+
};
|
|
168285
|
+
export declare type QueryAssetsVertical_HardwareObjectsArgs = {
|
|
168286
|
+
cloudId: Scalars['ID']['input'];
|
|
168287
|
+
input: AssetsVerticalHardwareObjectsInput;
|
|
168288
|
+
};
|
|
167602
168289
|
export declare type QueryAssetsVertical_InsightDefinitionsArgs = {
|
|
167603
168290
|
cloudId: Scalars['ID']['input'];
|
|
167604
168291
|
};
|
|
@@ -167810,6 +168497,12 @@ export declare type QueryAvp_GetDashboardIdBySlugArgs = {
|
|
|
167810
168497
|
workspaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
167811
168498
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
167812
168499
|
};
|
|
168500
|
+
export declare type QueryAvp_GetDashboardIdentityAccessArgs = {
|
|
168501
|
+
input: AvpGetDashboardIdentityAccessInput;
|
|
168502
|
+
};
|
|
168503
|
+
export declare type QueryAvp_GetDashboardResourcePermissionArgs = {
|
|
168504
|
+
input: AvpGetDashboardResourcePermissionInput;
|
|
168505
|
+
};
|
|
167813
168506
|
export declare type QueryAvp_GetDashboardTemplateJsonArgs = {
|
|
167814
168507
|
dashboardAri: Scalars['ID']['input'];
|
|
167815
168508
|
templateType: Scalars['String']['input'];
|
|
@@ -169374,6 +170067,12 @@ export declare type QueryCsm_LiveChatAgentArgs = {
|
|
|
169374
170067
|
accountId: Scalars['ID']['input'];
|
|
169375
170068
|
cloudId: Scalars['ID']['input'];
|
|
169376
170069
|
};
|
|
170070
|
+
export declare type QueryCsm_LiveChatAgentsArgs = {
|
|
170071
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170072
|
+
cloudId: Scalars['ID']['input'];
|
|
170073
|
+
filter?: InputMaybe<CustomerServiceLiveChatAgentsFilterInput>;
|
|
170074
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170075
|
+
};
|
|
169377
170076
|
export declare type QueryCsm_LiveChatSettingsArgs = {
|
|
169378
170077
|
cloudId: Scalars['ID']['input'];
|
|
169379
170078
|
};
|
|
@@ -169910,6 +170609,11 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
169910
170609
|
export declare type QueryGoals_CapabilitiesArgs = {
|
|
169911
170610
|
containerId: Scalars['ID']['input'];
|
|
169912
170611
|
};
|
|
170612
|
+
export declare type QueryGoals_ExplainSearchArgs = {
|
|
170613
|
+
containerId: Scalars['ID']['input'];
|
|
170614
|
+
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
170615
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
170616
|
+
};
|
|
169913
170617
|
export declare type QueryGoals_GoalStatusesArgs = {
|
|
169914
170618
|
containerId: Scalars['ID']['input'];
|
|
169915
170619
|
};
|
|
@@ -169948,6 +170652,9 @@ export declare type QueryGoals_SearchArgs = {
|
|
|
169948
170652
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
169949
170653
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
169950
170654
|
};
|
|
170655
|
+
export declare type QueryGraphInference_GetRelatedReposArgs = {
|
|
170656
|
+
input: GraphInferenceGetRelatedReposInput;
|
|
170657
|
+
};
|
|
169951
170658
|
export declare type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
169952
170659
|
contextAri: Scalars['ID']['input'];
|
|
169953
170660
|
};
|
|
@@ -169993,6 +170700,18 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
|
169993
170700
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
169994
170701
|
serverId: Scalars['ID']['input'];
|
|
169995
170702
|
};
|
|
170703
|
+
export declare type QueryGraphIntegration_McpServerRequestsArgs = {
|
|
170704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170705
|
+
cloudId: Scalars['ID']['input'];
|
|
170706
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170707
|
+
status?: InputMaybe<GraphIntegrationMcpServerRequestStatus>;
|
|
170708
|
+
};
|
|
170709
|
+
export declare type QueryGraphIntegration_McpServerUserRequestsArgs = {
|
|
170710
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170711
|
+
aggregateRequestId: Scalars['ID']['input'];
|
|
170712
|
+
cloudId: Scalars['ID']['input'];
|
|
170713
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170714
|
+
};
|
|
169996
170715
|
export declare type QueryGraphIntegration_McpServersArgs = {
|
|
169997
170716
|
ids: Array<Scalars['ID']['input']>;
|
|
169998
170717
|
};
|
|
@@ -170456,14 +171175,6 @@ export declare type QueryJpdViewsService_GlobalViewsByIdV2Args = {
|
|
|
170456
171175
|
export declare type QueryJpdViewsService_HydrateUserArgs = {
|
|
170457
171176
|
cloudId: Scalars['ID']['input'];
|
|
170458
171177
|
};
|
|
170459
|
-
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
170460
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
170461
|
-
cloudId: Scalars['ID']['input'];
|
|
170462
|
-
conversationAssignee?: InputMaybe<Scalars['String']['input']>;
|
|
170463
|
-
conversationStatus?: InputMaybe<Scalars['String']['input']>;
|
|
170464
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170465
|
-
projectKey: Scalars['String']['input'];
|
|
170466
|
-
};
|
|
170467
171178
|
export declare type QueryJsmChannels_ConversationsByContainerAriArgs = {
|
|
170468
171179
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170469
171180
|
containerAri: Scalars['ID']['input'];
|
|
@@ -170493,6 +171204,9 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
|
|
|
170493
171204
|
jiraProjectAri: Scalars['ID']['input'];
|
|
170494
171205
|
ticketId: Scalars['ID']['input'];
|
|
170495
171206
|
};
|
|
171207
|
+
export declare type QueryJsmChannels_HasRovoServiceResolutionPlanGeneratedArgs = {
|
|
171208
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
171209
|
+
};
|
|
170496
171210
|
export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
|
|
170497
171211
|
experience: JsmChannelsExperience;
|
|
170498
171212
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -170996,6 +171710,13 @@ export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
|
170996
171710
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170997
171711
|
projectKey: Scalars['String']['input'];
|
|
170998
171712
|
};
|
|
171713
|
+
export declare type QueryPlaybook_JiraPlaybookRuleIdsForProjectArgs = {
|
|
171714
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
171715
|
+
cloudId: Scalars['ID']['input'];
|
|
171716
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171717
|
+
issueId: Scalars['String']['input'];
|
|
171718
|
+
projectKey: Scalars['String']['input'];
|
|
171719
|
+
};
|
|
170999
171720
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
171000
171721
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
171001
171722
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -171089,6 +171810,14 @@ export declare type QueryPostOffice_GetMessagesArgs = {
|
|
|
171089
171810
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
171090
171811
|
payload: PostOfficeGetMessagesInput;
|
|
171091
171812
|
};
|
|
171813
|
+
export declare type QueryProactiveAi_EchoArgs = {
|
|
171814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
171815
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
171816
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171817
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
171818
|
+
message: Scalars['String']['input'];
|
|
171819
|
+
pageId: Scalars['ID']['input'];
|
|
171820
|
+
};
|
|
171092
171821
|
export declare type QueryProductListingArgs = {
|
|
171093
171822
|
id: Scalars['ID']['input'];
|
|
171094
171823
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -171149,6 +171878,11 @@ export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
|
|
|
171149
171878
|
sort?: InputMaybe<Array<InputMaybe<TownsquareCustomFieldSortEnum>>>;
|
|
171150
171879
|
workspaceUuid?: InputMaybe<Scalars['UUID']['input']>;
|
|
171151
171880
|
};
|
|
171881
|
+
export declare type QueryProjects_ExplainSearchArgs = {
|
|
171882
|
+
containerId: Scalars['ID']['input'];
|
|
171883
|
+
directoryViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
171884
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
171885
|
+
};
|
|
171152
171886
|
export declare type QueryProjects_LinksByIdsArgs = {
|
|
171153
171887
|
linkIds: Array<Scalars['ID']['input']>;
|
|
171154
171888
|
};
|
|
@@ -171977,6 +172711,22 @@ export declare type QuerySuggestedSpacesArgs = {
|
|
|
171977
172711
|
export declare type QuerySupportInquiry_ChannelsIdentityHashByClientNameArgs = {
|
|
171978
172712
|
request?: InputMaybe<SupportInquiryChannelPlatformIdentityHashRequest>;
|
|
171979
172713
|
};
|
|
172714
|
+
export declare type QueryTags_GetTagArgs = {
|
|
172715
|
+
kind: Scalars['String']['input'];
|
|
172716
|
+
orgId: Scalars['String']['input'];
|
|
172717
|
+
tagId: Scalars['String']['input'];
|
|
172718
|
+
};
|
|
172719
|
+
export declare type QueryTags_GetTagByNameKindOrgArgs = {
|
|
172720
|
+
kind: Scalars['String']['input'];
|
|
172721
|
+
name: Scalars['String']['input'];
|
|
172722
|
+
orgId: Scalars['String']['input'];
|
|
172723
|
+
};
|
|
172724
|
+
export declare type QueryTags_ListTagsArgs = {
|
|
172725
|
+
kind: Scalars['String']['input'];
|
|
172726
|
+
namePrefix?: InputMaybe<Scalars['String']['input']>;
|
|
172727
|
+
orgId: Scalars['String']['input'];
|
|
172728
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
172729
|
+
};
|
|
171980
172730
|
export declare type QueryTeamLabelsArgs = {
|
|
171981
172731
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
171982
172732
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -172164,6 +172914,11 @@ export declare type QueryUsersWithContentRestrictionsArgs = {
|
|
|
172164
172914
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
172165
172915
|
contentId: Scalars['ID']['input'];
|
|
172166
172916
|
};
|
|
172917
|
+
export declare type QueryUts_AllowanceExemptionsArgs = {
|
|
172918
|
+
scopeId: Scalars['ID']['input'];
|
|
172919
|
+
scopeType?: InputMaybe<UtsAllowanceExemptionScopeType>;
|
|
172920
|
+
usageKey?: InputMaybe<Scalars['String']['input']>;
|
|
172921
|
+
};
|
|
172167
172922
|
export declare type QueryUts_UsageAlertsArgs = {
|
|
172168
172923
|
state?: InputMaybe<UtsAlertState>;
|
|
172169
172924
|
usageIdentifier: Scalars['ID']['input'];
|
|
@@ -175639,6 +176394,27 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
175639
176394
|
type: SearchResultType;
|
|
175640
176395
|
url: Scalars['String']['output'];
|
|
175641
176396
|
};
|
|
176397
|
+
export declare type SearchResultCodeChunk = {
|
|
176398
|
+
__typename?: 'SearchResultCodeChunk';
|
|
176399
|
+
id: Scalars['ID']['output'];
|
|
176400
|
+
lineRange: SearchResultCodeLineRange;
|
|
176401
|
+
matchedLineNumbers: Array<Scalars['Int']['output']>;
|
|
176402
|
+
matchedRanges: Array<Array<Scalars['Int']['output']>>;
|
|
176403
|
+
sourceCode: Scalars['String']['output'];
|
|
176404
|
+
};
|
|
176405
|
+
export declare type SearchResultCodeLineRange = {
|
|
176406
|
+
__typename?: 'SearchResultCodeLineRange';
|
|
176407
|
+
end: Scalars['Int']['output'];
|
|
176408
|
+
start: Scalars['Int']['output'];
|
|
176409
|
+
};
|
|
176410
|
+
export declare type SearchResultCodeRepository = {
|
|
176411
|
+
__typename?: 'SearchResultCodeRepository';
|
|
176412
|
+
host: Scalars['String']['output'];
|
|
176413
|
+
id: Scalars['ID']['output'];
|
|
176414
|
+
name: Scalars['String']['output'];
|
|
176415
|
+
namespace: Scalars['String']['output'];
|
|
176416
|
+
url: Scalars['String']['output'];
|
|
176417
|
+
};
|
|
175642
176418
|
export declare type SearchResultCompassComponent = SearchResult & {
|
|
175643
176419
|
__typename?: 'SearchResultCompassComponent';
|
|
175644
176420
|
component?: Maybe<CompassComponent>;
|
|
@@ -175743,6 +176519,32 @@ export declare type SearchResultGraphAttachment = {
|
|
|
175743
176519
|
title?: Maybe<Scalars['String']['output']>;
|
|
175744
176520
|
url?: Maybe<Scalars['String']['output']>;
|
|
175745
176521
|
};
|
|
176522
|
+
export declare type SearchResultGraphCode = SearchL2FeatureProvider & SearchResult & {
|
|
176523
|
+
__typename?: 'SearchResultGraphCode';
|
|
176524
|
+
branchOrTagName?: Maybe<Scalars['String']['output']>;
|
|
176525
|
+
commitHash: Scalars['String']['output'];
|
|
176526
|
+
customPropertiesKeyword?: Maybe<Scalars['String']['output']>;
|
|
176527
|
+
description: Scalars['String']['output'];
|
|
176528
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
176529
|
+
id: Scalars['ID']['output'];
|
|
176530
|
+
isDefaultBranch?: Maybe<Scalars['Boolean']['output']>;
|
|
176531
|
+
isMatchedPath: Scalars['Boolean']['output'];
|
|
176532
|
+
l2BodyTextInput?: Maybe<Scalars['String']['output']>;
|
|
176533
|
+
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
176534
|
+
l2TitleInput?: Maybe<Scalars['String']['output']>;
|
|
176535
|
+
l3RerankDocumentText?: Maybe<Scalars['String']['output']>;
|
|
176536
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
176537
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
176538
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
176539
|
+
matchedChunks: Array<SearchResultCodeChunk>;
|
|
176540
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
176541
|
+
path: Scalars['String']['output'];
|
|
176542
|
+
repository: SearchResultCodeRepository;
|
|
176543
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
176544
|
+
title: Scalars['String']['output'];
|
|
176545
|
+
type: SearchResultType;
|
|
176546
|
+
url: Scalars['String']['output'];
|
|
176547
|
+
};
|
|
175746
176548
|
export declare type SearchResultGraphDocument = SearchL2FeatureProvider & SearchResult & {
|
|
175747
176549
|
__typename?: 'SearchResultGraphDocument';
|
|
175748
176550
|
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
@@ -176075,6 +176877,7 @@ export declare enum SearchResultType {
|
|
|
176075
176877
|
Attachment = "attachment",
|
|
176076
176878
|
Blogpost = "blogpost",
|
|
176077
176879
|
Board = "board",
|
|
176880
|
+
Code = "code",
|
|
176078
176881
|
Comment = "comment",
|
|
176079
176882
|
Component = "component",
|
|
176080
176883
|
Dashboard = "dashboard",
|
|
@@ -195589,13 +196392,13 @@ export declare type SmartsContextServiceOrbitObjectRecommendation = {
|
|
|
195589
196392
|
export declare type SmartsContextServiceQueryApi = {
|
|
195590
196393
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
195591
196394
|
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
195592
|
-
|
|
196395
|
+
orbitUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
195593
196396
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
195594
196397
|
};
|
|
195595
196398
|
export declare type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
195596
196399
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
195597
196400
|
};
|
|
195598
|
-
export declare type
|
|
196401
|
+
export declare type SmartsContextServiceQueryApiOrbitUserRecommendationsArgs = {
|
|
195599
196402
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
195600
196403
|
};
|
|
195601
196404
|
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
@@ -195682,7 +196485,7 @@ export declare type SmartsRecommendedContainerV2 = {
|
|
|
195682
196485
|
id: Scalars['ID']['output'];
|
|
195683
196486
|
score?: Maybe<Scalars['Float']['output']>;
|
|
195684
196487
|
};
|
|
195685
|
-
export declare type SmartsRecommendedEntity = ConfluenceBlogPost | ConfluencePage | ExternalDocument;
|
|
196488
|
+
export declare type SmartsRecommendedEntity = ConfluenceBlogPost | ConfluencePage | ExternalDocument | ExternalPullRequest | JiraIssue | TownsquareProject;
|
|
195686
196489
|
export declare type SmartsRecommendedFieldObject = {
|
|
195687
196490
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
195688
196491
|
id: Scalars['ID']['output'];
|
|
@@ -200031,11 +200834,19 @@ export declare type SupportRequestOrganizationsInput = {
|
|
|
200031
200834
|
};
|
|
200032
200835
|
export declare type SupportRequestPage = {
|
|
200033
200836
|
__typename?: 'SupportRequestPage';
|
|
200837
|
+
ecosystemRequests?: Maybe<SupportRequests>;
|
|
200034
200838
|
migrationRequests?: Maybe<SupportRequestHierarchyRequests>;
|
|
200035
200839
|
namedContactRelations?: Maybe<SupportRequestNamedContactRelations>;
|
|
200036
200840
|
profile?: Maybe<SupportRequestUser>;
|
|
200037
200841
|
requests?: Maybe<SupportRequests>;
|
|
200038
200842
|
};
|
|
200843
|
+
export declare type SupportRequestPageEcosystemRequestsArgs = {
|
|
200844
|
+
offset?: Scalars['Int']['input'];
|
|
200845
|
+
ownership?: InputMaybe<SupportRequestQueryOwnership>;
|
|
200846
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
200847
|
+
size?: Scalars['Int']['input'];
|
|
200848
|
+
status?: InputMaybe<SupportRequestQueryStatusCategory>;
|
|
200849
|
+
};
|
|
200039
200850
|
export declare type SupportRequestPageMigrationRequestsArgs = {
|
|
200040
200851
|
offset?: Scalars['Int']['input'];
|
|
200041
200852
|
ownership?: InputMaybe<SupportRequestQueryOwnership>;
|
|
@@ -200220,6 +201031,34 @@ export declare type SystemUser = {
|
|
|
200220
201031
|
isMentionable?: Maybe<Scalars['Boolean']['output']>;
|
|
200221
201032
|
nickName?: Maybe<Scalars['String']['output']>;
|
|
200222
201033
|
};
|
|
201034
|
+
export declare type TagsCreateInput = {
|
|
201035
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
201036
|
+
name: Scalars['String']['input'];
|
|
201037
|
+
orgId: Scalars['String']['input'];
|
|
201038
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
201039
|
+
};
|
|
201040
|
+
export declare type TagsListResponse = {
|
|
201041
|
+
__typename?: 'TagsListResponse';
|
|
201042
|
+
items: Array<TagsResponse>;
|
|
201043
|
+
totalCount: Scalars['Int']['output'];
|
|
201044
|
+
};
|
|
201045
|
+
export declare type TagsResponse = {
|
|
201046
|
+
__typename?: 'TagsResponse';
|
|
201047
|
+
createdAt: Scalars['String']['output'];
|
|
201048
|
+
id: Scalars['String']['output'];
|
|
201049
|
+
kind: Scalars['String']['output'];
|
|
201050
|
+
metadata?: Maybe<Scalars['String']['output']>;
|
|
201051
|
+
name: Scalars['String']['output'];
|
|
201052
|
+
status: Scalars['String']['output'];
|
|
201053
|
+
workspaceAri?: Maybe<Scalars['String']['output']>;
|
|
201054
|
+
};
|
|
201055
|
+
export declare type TagsUpdateInput = {
|
|
201056
|
+
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
201057
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
201058
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
201059
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
201060
|
+
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
201061
|
+
};
|
|
200223
201062
|
export declare type TapExperiment = {
|
|
200224
201063
|
__typename?: 'TapExperiment';
|
|
200225
201064
|
experimentKey: Scalars['String']['output'];
|
|
@@ -202604,8 +203443,10 @@ export declare type TownsquareGoalManageAccessModifiedInput = {
|
|
|
202604
203443
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
202605
203444
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
202606
203445
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
203446
|
+
addedWatchers?: Maybe<Array<User>>;
|
|
202607
203447
|
errors?: Maybe<Array<MutationError>>;
|
|
202608
203448
|
goal?: Maybe<TownsquareGoal>;
|
|
203449
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202609
203450
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202610
203451
|
success: Scalars['Boolean']['output'];
|
|
202611
203452
|
};
|
|
@@ -203752,6 +204593,7 @@ export declare type TownsquareMetricUpdateEditInput = {
|
|
|
203752
204593
|
export declare type TownsquareMetricUpdateInput = {
|
|
203753
204594
|
newValue: Scalars['Float']['input'];
|
|
203754
204595
|
targetId: Scalars['ID']['input'];
|
|
204596
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
203755
204597
|
};
|
|
203756
204598
|
export declare type TownsquareMetricValue = Node & {
|
|
203757
204599
|
__typename?: 'TownsquareMetricValue';
|
|
@@ -204261,8 +205103,10 @@ export declare type TownsquareProjectManageAccessModifiedInput = {
|
|
|
204261
205103
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
204262
205104
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
204263
205105
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
205106
|
+
addedWatchers?: Maybe<Array<User>>;
|
|
204264
205107
|
errors?: Maybe<Array<MutationError>>;
|
|
204265
205108
|
project?: Maybe<TownsquareProject>;
|
|
205109
|
+
removedWatcherIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
204266
205110
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
204267
205111
|
success: Scalars['Boolean']['output'];
|
|
204268
205112
|
};
|
|
@@ -205151,6 +205995,33 @@ export declare enum TownsquareRiskSortEnum {
|
|
|
205151
205995
|
SummaryAsc = "SUMMARY_ASC",
|
|
205152
205996
|
SummaryDesc = "SUMMARY_DESC"
|
|
205153
205997
|
}
|
|
205998
|
+
export declare enum TownsquareSearchEntity {
|
|
205999
|
+
Goal = "GOAL",
|
|
206000
|
+
Project = "PROJECT"
|
|
206001
|
+
}
|
|
206002
|
+
export declare type TownsquareSearchExplanation = {
|
|
206003
|
+
__typename?: 'TownsquareSearchExplanation';
|
|
206004
|
+
availableFields?: Maybe<Array<Maybe<TownsquareSearchExplanationField>>>;
|
|
206005
|
+
entity?: Maybe<TownsquareSearchEntity>;
|
|
206006
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
206007
|
+
logSafeQuery?: Maybe<Scalars['String']['output']>;
|
|
206008
|
+
queryCost: Scalars['Int']['output'];
|
|
206009
|
+
};
|
|
206010
|
+
export declare type TownsquareSearchExplanationField = {
|
|
206011
|
+
__typename?: 'TownsquareSearchExplanationField';
|
|
206012
|
+
aliases?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
206013
|
+
cost: Scalars['Int']['output'];
|
|
206014
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
206015
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
206016
|
+
operators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
206017
|
+
type?: Maybe<TownsquareSearchType>;
|
|
206018
|
+
};
|
|
206019
|
+
export declare enum TownsquareSearchType {
|
|
206020
|
+
Integer = "Integer",
|
|
206021
|
+
Numeric = "Numeric",
|
|
206022
|
+
String = "String",
|
|
206023
|
+
User = "User"
|
|
206024
|
+
}
|
|
205154
206025
|
export declare type TownsquareSetParentGoalInput = {
|
|
205155
206026
|
goalAri: Scalars['String']['input'];
|
|
205156
206027
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -207065,6 +207936,7 @@ export declare enum TrelloCardExternalSource {
|
|
|
207065
207936
|
BrowserExtensionLink = "BROWSER_EXTENSION_LINK",
|
|
207066
207937
|
Confluence = "CONFLUENCE",
|
|
207067
207938
|
Email = "EMAIL",
|
|
207939
|
+
GoogleChat = "GOOGLE_CHAT",
|
|
207068
207940
|
Loom = "LOOM",
|
|
207069
207941
|
Msteams = "MSTEAMS",
|
|
207070
207942
|
Siri = "SIRI",
|
|
@@ -208661,6 +209533,7 @@ export declare type TrelloMember = Node & {
|
|
|
208661
209533
|
referral?: Maybe<TrelloMemberReferral>;
|
|
208662
209534
|
referrer?: Maybe<TrelloMember>;
|
|
208663
209535
|
url?: Maybe<Scalars['URL']['output']>;
|
|
209536
|
+
usageLimits?: Maybe<Array<TrelloUsageLimit>>;
|
|
208664
209537
|
user?: Maybe<User>;
|
|
208665
209538
|
username?: Maybe<Scalars['String']['output']>;
|
|
208666
209539
|
webhooks?: Maybe<TrelloMemberOwnedWebhookConnection>;
|
|
@@ -209644,6 +210517,7 @@ export declare enum TrelloPlannerBoardFilterMode {
|
|
|
209644
210517
|
}
|
|
209645
210518
|
export declare type TrelloPlannerBoardOverride = {
|
|
209646
210519
|
__typename?: 'TrelloPlannerBoardOverride';
|
|
210520
|
+
boardBackground?: Maybe<TrelloBoardBackground>;
|
|
209647
210521
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
209648
210522
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
209649
210523
|
boardObjectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -211698,6 +212572,22 @@ export declare type TrelloUploadedBackground = {
|
|
|
211698
212572
|
__typename?: 'TrelloUploadedBackground';
|
|
211699
212573
|
objectId: Scalars['ID']['output'];
|
|
211700
212574
|
};
|
|
212575
|
+
export declare type TrelloUsageLimit = {
|
|
212576
|
+
__typename?: 'TrelloUsageLimit';
|
|
212577
|
+
count: Scalars['Int']['output'];
|
|
212578
|
+
interval?: Maybe<TrelloUsageLimitInterval>;
|
|
212579
|
+
key: TrelloUsageLimitKey;
|
|
212580
|
+
limit: Scalars['Int']['output'];
|
|
212581
|
+
periodEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
212582
|
+
periodStart?: Maybe<Scalars['DateTime']['output']>;
|
|
212583
|
+
};
|
|
212584
|
+
export declare enum TrelloUsageLimitInterval {
|
|
212585
|
+
Monthly = "MONTHLY"
|
|
212586
|
+
}
|
|
212587
|
+
export declare enum TrelloUsageLimitKey {
|
|
212588
|
+
AiBoardBackgroundGeneration = "AI_BOARD_BACKGROUND_GENERATION",
|
|
212589
|
+
AiCardCoverGeneration = "AI_CARD_COVER_GENERATION"
|
|
212590
|
+
}
|
|
211701
212591
|
export declare type TrelloUserGeneratedText = {
|
|
211702
212592
|
__typename?: 'TrelloUserGeneratedText';
|
|
211703
212593
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -214137,6 +215027,7 @@ export declare type UpdatePolarisTimelineConfig = {
|
|
|
214137
215027
|
todayMarker?: InputMaybe<PolarisTimelineTodayMarker>;
|
|
214138
215028
|
};
|
|
214139
215029
|
export declare type UpdatePolarisTreeConfig = {
|
|
215030
|
+
allowMultipleParents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
214140
215031
|
defaultFields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
214141
215032
|
hierarchy?: InputMaybe<Array<UpdatePolarisTreeHierarchyItem>>;
|
|
214142
215033
|
mode?: InputMaybe<PolarisTreeMode>;
|
|
@@ -214617,6 +215508,33 @@ export declare type UtsAlertThreshold = {
|
|
|
214617
215508
|
usageIdentifier: Scalars['String']['output'];
|
|
214618
215509
|
value?: Maybe<Scalars['Float']['output']>;
|
|
214619
215510
|
};
|
|
215511
|
+
export declare type UtsAllowanceExemption = {
|
|
215512
|
+
__typename?: 'UtsAllowanceExemption';
|
|
215513
|
+
exemptionType?: Maybe<Scalars['String']['output']>;
|
|
215514
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
215515
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
215516
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
215517
|
+
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
215518
|
+
scopeType?: Maybe<UtsAllowanceExemptionScopeType>;
|
|
215519
|
+
status?: Maybe<UtsAllowanceExemptionStatus>;
|
|
215520
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
215521
|
+
};
|
|
215522
|
+
export declare type UtsAllowanceExemptionList = {
|
|
215523
|
+
__typename?: 'UtsAllowanceExemptionList';
|
|
215524
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
215525
|
+
exemptions?: Maybe<Array<Maybe<UtsAllowanceExemption>>>;
|
|
215526
|
+
nextPageToken?: Maybe<Scalars['String']['output']>;
|
|
215527
|
+
};
|
|
215528
|
+
export declare enum UtsAllowanceExemptionScopeType {
|
|
215529
|
+
Org = "ORG",
|
|
215530
|
+
OrgMeter = "ORG_METER"
|
|
215531
|
+
}
|
|
215532
|
+
export declare enum UtsAllowanceExemptionStatus {
|
|
215533
|
+
Active = "ACTIVE",
|
|
215534
|
+
Cancelled = "CANCELLED",
|
|
215535
|
+
Expired = "EXPIRED",
|
|
215536
|
+
Scheduled = "SCHEDULED"
|
|
215537
|
+
}
|
|
214620
215538
|
export declare type UtsAllowancePoolAllocationUpdateInput = {
|
|
214621
215539
|
allocationId: Scalars['ID']['input'];
|
|
214622
215540
|
billingEntity?: InputMaybe<Scalars['String']['input']>;
|