@forge/cli-shared 5.5.3-next.1 → 5.5.3-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +222 -25
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +47 -14
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3223,6 +3223,19 @@ export declare type CompassAttentionItemQuery = {
|
|
|
3223
3223
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3224
3224
|
};
|
|
3225
3225
|
export declare type CompassAttentionItemQueryResult = CompassAttentionItemConnection | QueryError;
|
|
3226
|
+
export declare type CompassBooleanField = CompassField & {
|
|
3227
|
+
__typename?: 'CompassBooleanField';
|
|
3228
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
3229
|
+
definition?: Maybe<CompassFieldDefinition>;
|
|
3230
|
+
};
|
|
3231
|
+
export declare type CompassBooleanFieldDefinitionOptions = {
|
|
3232
|
+
__typename?: 'CompassBooleanFieldDefinitionOptions';
|
|
3233
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
3234
|
+
booleanValues?: Maybe<Array<Scalars['Boolean']['output']>>;
|
|
3235
|
+
};
|
|
3236
|
+
export declare type CompassBooleanFieldValueInput = {
|
|
3237
|
+
booleanValue: Scalars['Boolean']['input'];
|
|
3238
|
+
};
|
|
3226
3239
|
export declare type CompassBuildEvent = CompassEvent & {
|
|
3227
3240
|
__typename?: 'CompassBuildEvent';
|
|
3228
3241
|
buildProperties: CompassBuildEventProperties;
|
|
@@ -5121,19 +5134,21 @@ export declare type CompassFieldDefinition = {
|
|
|
5121
5134
|
options: CompassFieldDefinitionOptions;
|
|
5122
5135
|
type: CompassFieldType;
|
|
5123
5136
|
};
|
|
5124
|
-
export declare type CompassFieldDefinitionOptions = CompassEnumFieldDefinitionOptions;
|
|
5137
|
+
export declare type CompassFieldDefinitionOptions = CompassBooleanFieldDefinitionOptions | CompassEnumFieldDefinitionOptions;
|
|
5125
5138
|
export declare type CompassFieldDefinitions = {
|
|
5126
5139
|
__typename?: 'CompassFieldDefinitions';
|
|
5127
5140
|
definitions: Array<CompassFieldDefinition>;
|
|
5128
5141
|
};
|
|
5129
5142
|
export declare type CompassFieldDefinitionsResult = CompassFieldDefinitions | QueryError;
|
|
5130
5143
|
export declare enum CompassFieldType {
|
|
5144
|
+
Boolean = "BOOLEAN",
|
|
5131
5145
|
Date = "DATE",
|
|
5132
5146
|
Enum = "ENUM",
|
|
5133
5147
|
Number = "NUMBER",
|
|
5134
5148
|
Text = "TEXT"
|
|
5135
5149
|
}
|
|
5136
5150
|
export declare type CompassFieldValueInput = {
|
|
5151
|
+
boolean?: InputMaybe<CompassBooleanFieldValueInput>;
|
|
5137
5152
|
enum?: InputMaybe<CompassEnumFieldValueInput>;
|
|
5138
5153
|
};
|
|
5139
5154
|
export declare type CompassFilteredComponentsCount = {
|
|
@@ -17192,6 +17207,57 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
17192
17207
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
17193
17208
|
workspaceId: Scalars['ID']['input'];
|
|
17194
17209
|
};
|
|
17210
|
+
export declare type DevAiAutodevLog = {
|
|
17211
|
+
id: Scalars['ID']['output'];
|
|
17212
|
+
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17213
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17214
|
+
};
|
|
17215
|
+
export declare type DevAiAutodevLogConnection = {
|
|
17216
|
+
__typename?: 'DevAiAutodevLogConnection';
|
|
17217
|
+
edges?: Maybe<Array<Maybe<DevAiAutodevLogEdge>>>;
|
|
17218
|
+
pageInfo: PageInfo;
|
|
17219
|
+
};
|
|
17220
|
+
export declare type DevAiAutodevLogEdge = {
|
|
17221
|
+
__typename?: 'DevAiAutodevLogEdge';
|
|
17222
|
+
cursor: Scalars['String']['output'];
|
|
17223
|
+
node?: Maybe<DevAiAutodevLog>;
|
|
17224
|
+
};
|
|
17225
|
+
export declare type DevAiAutodevLogGroup = {
|
|
17226
|
+
__typename?: 'DevAiAutodevLogGroup';
|
|
17227
|
+
id: Scalars['ID']['output'];
|
|
17228
|
+
logs?: Maybe<DevAiAutodevLogConnection>;
|
|
17229
|
+
phase?: Maybe<DevAiAutodevLogGroupPhase>;
|
|
17230
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
17231
|
+
status?: Maybe<DevAiAutodevLogGroupStatus>;
|
|
17232
|
+
};
|
|
17233
|
+
export declare type DevAiAutodevLogGroupConnection = {
|
|
17234
|
+
__typename?: 'DevAiAutodevLogGroupConnection';
|
|
17235
|
+
edges?: Maybe<Array<Maybe<DevAiAutodevLogGroupEdge>>>;
|
|
17236
|
+
pageInfo: PageInfo;
|
|
17237
|
+
};
|
|
17238
|
+
export declare type DevAiAutodevLogGroupEdge = {
|
|
17239
|
+
__typename?: 'DevAiAutodevLogGroupEdge';
|
|
17240
|
+
cursor: Scalars['String']['output'];
|
|
17241
|
+
node?: Maybe<DevAiAutodevLogGroup>;
|
|
17242
|
+
};
|
|
17243
|
+
export declare enum DevAiAutodevLogGroupPhase {
|
|
17244
|
+
CodeGenerating = "CODE_GENERATING",
|
|
17245
|
+
CodeReview = "CODE_REVIEW",
|
|
17246
|
+
CodeReGenerating = "CODE_RE_GENERATING",
|
|
17247
|
+
PlanGenerating = "PLAN_GENERATING",
|
|
17248
|
+
PlanReview = "PLAN_REVIEW",
|
|
17249
|
+
PlanReGenerating = "PLAN_RE_GENERATING"
|
|
17250
|
+
}
|
|
17251
|
+
export declare enum DevAiAutodevLogGroupStatus {
|
|
17252
|
+
Completed = "COMPLETED",
|
|
17253
|
+
Failed = "FAILED",
|
|
17254
|
+
InProgress = "IN_PROGRESS"
|
|
17255
|
+
}
|
|
17256
|
+
export declare enum DevAiAutodevLogStatus {
|
|
17257
|
+
Completed = "COMPLETED",
|
|
17258
|
+
Failed = "FAILED",
|
|
17259
|
+
InProgress = "IN_PROGRESS"
|
|
17260
|
+
}
|
|
17195
17261
|
export declare type DevAiAutofixConfiguration = {
|
|
17196
17262
|
__typename?: 'DevAiAutofixConfiguration';
|
|
17197
17263
|
autofixScans?: Maybe<DevAiAutofixScansConnection>;
|
|
@@ -17334,6 +17400,14 @@ export declare type DevAiCancelRunningAutofixScanInput = {
|
|
|
17334
17400
|
repoUrl: Scalars['URL']['input'];
|
|
17335
17401
|
workspaceId: Scalars['ID']['input'];
|
|
17336
17402
|
};
|
|
17403
|
+
export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
|
|
17404
|
+
__typename?: 'DevAiGenericAutodevLog';
|
|
17405
|
+
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
17406
|
+
id: Scalars['ID']['output'];
|
|
17407
|
+
kind?: Maybe<Scalars['String']['output']>;
|
|
17408
|
+
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17409
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17410
|
+
};
|
|
17337
17411
|
export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension & {
|
|
17338
17412
|
__typename?: 'DevAiGenericMutationErrorExtension';
|
|
17339
17413
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -17362,6 +17436,13 @@ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
|
|
|
17362
17436
|
export declare type DevAiMutationsTriggerAutofixScanArgs = {
|
|
17363
17437
|
input: DevAiTriggerAutofixScanInput;
|
|
17364
17438
|
};
|
|
17439
|
+
export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
17440
|
+
__typename?: 'DevAiPlaintextAutodevLog';
|
|
17441
|
+
id: Scalars['ID']['output'];
|
|
17442
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
17443
|
+
status?: Maybe<DevAiAutodevLogStatus>;
|
|
17444
|
+
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
17445
|
+
};
|
|
17365
17446
|
export declare type DevAiRunAutofixScanInput = {
|
|
17366
17447
|
repoUrl: Scalars['URL']['input'];
|
|
17367
17448
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -28891,10 +28972,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
|
28891
28972
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28892
28973
|
};
|
|
28893
28974
|
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
28894
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
28895
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
28896
28975
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28897
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
28898
28976
|
};
|
|
28899
28977
|
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
28900
28978
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
@@ -33531,12 +33609,10 @@ export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
|
|
|
33531
33609
|
};
|
|
33532
33610
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
|
|
33533
33611
|
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
|
|
33534
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo &
|
|
33612
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
|
|
33535
33613
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
|
|
33536
33614
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
|
|
33537
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33538
33615
|
pageInfo: PageInfo;
|
|
33539
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33540
33616
|
};
|
|
33541
33617
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectEdge = {
|
|
33542
33618
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectEdge';
|
|
@@ -33546,12 +33622,10 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectEdge = {
|
|
|
33546
33622
|
lastUpdated: Scalars['DateTime']['output'];
|
|
33547
33623
|
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectUnion>;
|
|
33548
33624
|
};
|
|
33549
|
-
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseConnection = HasPageInfo &
|
|
33625
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseConnection = HasPageInfo & {
|
|
33550
33626
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseConnection';
|
|
33551
33627
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseEdge>>>;
|
|
33552
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33553
33628
|
pageInfo: PageInfo;
|
|
33554
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33555
33629
|
};
|
|
33556
33630
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
33557
33631
|
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseEdge';
|
|
@@ -36458,21 +36532,27 @@ export declare type GrowthUnifiedProfileInput = {
|
|
|
36458
36532
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
36459
36533
|
};
|
|
36460
36534
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
36535
|
+
AdHocTaskAndIncidentManagement = "AD_HOC_TASK_AND_INCIDENT_MANAGEMENT",
|
|
36461
36536
|
Budgets = "BUDGETS",
|
|
36462
36537
|
CdWrtng = "CD_WRTNG",
|
|
36538
|
+
CentralizedDocumentation = "CENTRALIZED_DOCUMENTATION",
|
|
36539
|
+
ComplianceAndRiskManagement = "COMPLIANCE_AND_RISK_MANAGEMENT",
|
|
36463
36540
|
EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
|
|
36464
36541
|
ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
|
|
36465
36542
|
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
36466
36543
|
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
36467
36544
|
ManageTasks = "MANAGE_TASKS",
|
|
36545
|
+
ManagingClientAndVendorRelationships = "MANAGING_CLIENT_AND_VENDOR_RELATIONSHIPS",
|
|
36468
36546
|
MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
|
|
36469
36547
|
MarketingContent = "MARKETING_CONTENT",
|
|
36470
36548
|
PlanAndManage = "PLAN_AND_MANAGE",
|
|
36471
36549
|
PrioritizeWork = "PRIORITIZE_WORK",
|
|
36472
36550
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
36551
|
+
ProjectPlanningAndCoordination = "PROJECT_PLANNING_AND_COORDINATION",
|
|
36473
36552
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
36474
36553
|
Stakeholders = "STAKEHOLDERS",
|
|
36475
36554
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
36555
|
+
SystemAndToolEvaluations = "SYSTEM_AND_TOOL_EVALUATIONS",
|
|
36476
36556
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
36477
36557
|
TrackBugs = "TRACK_BUGS",
|
|
36478
36558
|
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
@@ -39788,6 +39868,7 @@ export declare type JiraAutodevJob = {
|
|
|
39788
39868
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
39789
39869
|
id: Scalars['ID']['output'];
|
|
39790
39870
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
39871
|
+
logGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
39791
39872
|
phase?: Maybe<JiraAutodevPhase>;
|
|
39792
39873
|
plan?: Maybe<JiraAutodevPlan>;
|
|
39793
39874
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
@@ -40244,6 +40325,7 @@ export declare type JiraCalendar = {
|
|
|
40244
40325
|
startDateField?: Maybe<JiraIssueField>;
|
|
40245
40326
|
unscheduledIssues?: Maybe<JiraIssueConnection>;
|
|
40246
40327
|
versions?: Maybe<JiraVersionConnection>;
|
|
40328
|
+
versionsV2?: Maybe<JiraScenarioVersionLikeConnection>;
|
|
40247
40329
|
};
|
|
40248
40330
|
export declare type JiraCalendarCrossProjectVersionsArgs = {
|
|
40249
40331
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40299,6 +40381,13 @@ export declare type JiraCalendarVersionsArgs = {
|
|
|
40299
40381
|
input?: InputMaybe<JiraCalendarVersionsInput>;
|
|
40300
40382
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
40301
40383
|
};
|
|
40384
|
+
export declare type JiraCalendarVersionsV2Args = {
|
|
40385
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40386
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
40387
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40388
|
+
input?: InputMaybe<JiraCalendarVersionsInput>;
|
|
40389
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
40390
|
+
};
|
|
40302
40391
|
export declare type JiraCalendarCrossProjectVersionsInput = {
|
|
40303
40392
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
40304
40393
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -41667,6 +41756,10 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
41667
41756
|
type: Scalars['String']['output'];
|
|
41668
41757
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
41669
41758
|
};
|
|
41759
|
+
export declare type JiraDateScenarioValueField = {
|
|
41760
|
+
__typename?: 'JiraDateScenarioValueField';
|
|
41761
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
41762
|
+
};
|
|
41670
41763
|
export declare type JiraDateTimeFieldInput = {
|
|
41671
41764
|
dateTime: JiraDateTimeInput;
|
|
41672
41765
|
fieldId: Scalars['ID']['input'];
|
|
@@ -43304,6 +43397,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
43304
43397
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
43305
43398
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
43306
43399
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
43400
|
+
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
43307
43401
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
43308
43402
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
43309
43403
|
priorityField?: Maybe<JiraPriorityField>;
|
|
@@ -47180,6 +47274,7 @@ export declare type JiraPlan = Node & {
|
|
|
47180
47274
|
id: Scalars['ID']['output'];
|
|
47181
47275
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
47182
47276
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
47277
|
+
owner?: Maybe<User>;
|
|
47183
47278
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
47184
47279
|
planStatus?: Maybe<JiraPlanStatus>;
|
|
47185
47280
|
planUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -47349,6 +47444,7 @@ export declare type JiraProject = Node & {
|
|
|
47349
47444
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
47350
47445
|
id: Scalars['ID']['output'];
|
|
47351
47446
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
47447
|
+
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
47352
47448
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
47353
47449
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
47354
47450
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
@@ -47394,6 +47490,7 @@ export declare type JiraProject = Node & {
|
|
|
47394
47490
|
versions?: Maybe<JiraVersionConnection>;
|
|
47395
47491
|
versionsV2?: Maybe<JiraVersionConnectionResult>;
|
|
47396
47492
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
47493
|
+
virtualAgentLiveIntentsCount?: Maybe<VirtualAgentLiveIntentCountResponse>;
|
|
47397
47494
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
47398
47495
|
};
|
|
47399
47496
|
export declare type JiraProjectActionArgs = {
|
|
@@ -48230,6 +48327,7 @@ export declare type JiraQuery = {
|
|
|
48230
48327
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
48231
48328
|
permission?: Maybe<JiraPermission>;
|
|
48232
48329
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
48330
|
+
planById?: Maybe<JiraPlan>;
|
|
48233
48331
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
48234
48332
|
projectCleanupLogTableEntries?: Maybe<JiraProjectCleanupLogTableEntryConnection>;
|
|
48235
48333
|
projectCleanupRecommendations?: Maybe<JiraProjectCleanupRecommendationConnection>;
|
|
@@ -48913,6 +49011,9 @@ export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
|
48913
49011
|
permissionKey?: InputMaybe<Scalars['String']['input']>;
|
|
48914
49012
|
schemeId: Scalars['ID']['input'];
|
|
48915
49013
|
};
|
|
49014
|
+
export declare type JiraQueryPlanByIdArgs = {
|
|
49015
|
+
id: Scalars['ID']['input'];
|
|
49016
|
+
};
|
|
48916
49017
|
export declare type JiraQueryPostIncidentReviewLinksByIdsArgs = {
|
|
48917
49018
|
ids: Array<Scalars['ID']['input']>;
|
|
48918
49019
|
};
|
|
@@ -49761,6 +49862,41 @@ export declare enum JiraScenarioType {
|
|
|
49761
49862
|
Deletedfromjira = "DELETEDFROMJIRA",
|
|
49762
49863
|
Updated = "UPDATED"
|
|
49763
49864
|
}
|
|
49865
|
+
export declare type JiraScenarioVersion = JiraScenarioVersionLike & Node & {
|
|
49866
|
+
__typename?: 'JiraScenarioVersion';
|
|
49867
|
+
crossProjectVersion?: Maybe<Scalars['String']['output']>;
|
|
49868
|
+
id: Scalars['ID']['output'];
|
|
49869
|
+
planScenarioValues?: Maybe<JiraVersionPlanScenarioValues>;
|
|
49870
|
+
};
|
|
49871
|
+
export declare type JiraScenarioVersionCrossProjectVersionArgs = {
|
|
49872
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
49873
|
+
};
|
|
49874
|
+
export declare type JiraScenarioVersionPlanScenarioValuesArgs = {
|
|
49875
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
49876
|
+
};
|
|
49877
|
+
export declare type JiraScenarioVersionLike = {
|
|
49878
|
+
crossProjectVersion?: Maybe<Scalars['String']['output']>;
|
|
49879
|
+
id: Scalars['ID']['output'];
|
|
49880
|
+
planScenarioValues?: Maybe<JiraVersionPlanScenarioValues>;
|
|
49881
|
+
};
|
|
49882
|
+
export declare type JiraScenarioVersionLikeCrossProjectVersionArgs = {
|
|
49883
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
49884
|
+
};
|
|
49885
|
+
export declare type JiraScenarioVersionLikePlanScenarioValuesArgs = {
|
|
49886
|
+
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
49887
|
+
};
|
|
49888
|
+
export declare type JiraScenarioVersionLikeConnection = {
|
|
49889
|
+
__typename?: 'JiraScenarioVersionLikeConnection';
|
|
49890
|
+
edges?: Maybe<Array<Maybe<JiraScenarioVersionLikeEdge>>>;
|
|
49891
|
+
errors?: Maybe<Array<QueryError>>;
|
|
49892
|
+
pageInfo: PageInfo;
|
|
49893
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
49894
|
+
};
|
|
49895
|
+
export declare type JiraScenarioVersionLikeEdge = {
|
|
49896
|
+
__typename?: 'JiraScenarioVersionLikeEdge';
|
|
49897
|
+
cursor: Scalars['String']['output'];
|
|
49898
|
+
node?: Maybe<JiraScenarioVersionLike>;
|
|
49899
|
+
};
|
|
49764
49900
|
export declare type JiraScheduleCalendarIssuePayload = Payload & {
|
|
49765
49901
|
__typename?: 'JiraScheduleCalendarIssuePayload';
|
|
49766
49902
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -52633,7 +52769,7 @@ export declare type JiraUserSegmentation = {
|
|
|
52633
52769
|
role?: Maybe<Scalars['String']['output']>;
|
|
52634
52770
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
52635
52771
|
};
|
|
52636
|
-
export declare type JiraVersion = JiraSelectableValue & Node & {
|
|
52772
|
+
export declare type JiraVersion = JiraScenarioVersionLike & JiraSelectableValue & Node & {
|
|
52637
52773
|
__typename?: 'JiraVersion';
|
|
52638
52774
|
approvers?: Maybe<JiraVersionApproverConnection>;
|
|
52639
52775
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
@@ -52978,8 +53114,10 @@ export declare type JiraVersionPlanScenarioValues = {
|
|
|
52978
53114
|
description?: Maybe<Scalars['String']['output']>;
|
|
52979
53115
|
name?: Maybe<Scalars['String']['output']>;
|
|
52980
53116
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
|
53117
|
+
releaseDateValue?: Maybe<JiraDateScenarioValueField>;
|
|
52981
53118
|
scenarioType?: Maybe<JiraScenarioType>;
|
|
52982
53119
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
53120
|
+
startDateValue?: Maybe<JiraDateScenarioValueField>;
|
|
52983
53121
|
};
|
|
52984
53122
|
export declare type JiraVersionRelatedWork = {
|
|
52985
53123
|
__typename?: 'JiraVersionRelatedWork';
|
|
@@ -54930,6 +55068,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
54930
55068
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
54931
55069
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
54932
55070
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
55071
|
+
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
54933
55072
|
};
|
|
54934
55073
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
54935
55074
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
@@ -54943,6 +55082,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
|
54943
55082
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
54944
55083
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
54945
55084
|
};
|
|
55085
|
+
export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
|
|
55086
|
+
input: KnowledgeDiscoveryUpdateRelatedEntitiesInput;
|
|
55087
|
+
};
|
|
54946
55088
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
54947
55089
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
54948
55090
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -54960,6 +55102,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
54960
55102
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
54961
55103
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
54962
55104
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
55105
|
+
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
54963
55106
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
54964
55107
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
54965
55108
|
};
|
|
@@ -55018,6 +55161,11 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
55018
55161
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
55019
55162
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55020
55163
|
};
|
|
55164
|
+
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
55165
|
+
orgId: Scalars['String']['input'];
|
|
55166
|
+
teamName: Scalars['String']['input'];
|
|
55167
|
+
workspaceId: Scalars['String']['input'];
|
|
55168
|
+
};
|
|
55021
55169
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
55022
55170
|
locale: Scalars['String']['input'];
|
|
55023
55171
|
query: Scalars['String']['input'];
|
|
@@ -55029,6 +55177,14 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
55029
55177
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55030
55178
|
};
|
|
55031
55179
|
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
55180
|
+
export declare type KnowledgeDiscoveryRelatedEntityAction = {
|
|
55181
|
+
action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
|
|
55182
|
+
relatedEntityId: Scalars['ID']['input'];
|
|
55183
|
+
};
|
|
55184
|
+
export declare enum KnowledgeDiscoveryRelatedEntityActionType {
|
|
55185
|
+
Delete = "DELETE",
|
|
55186
|
+
Persist = "PERSIST"
|
|
55187
|
+
}
|
|
55032
55188
|
export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
55033
55189
|
__typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
|
|
55034
55190
|
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
@@ -55047,6 +55203,11 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
55047
55203
|
transformedQuery: Scalars['String']['output'];
|
|
55048
55204
|
};
|
|
55049
55205
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
55206
|
+
export declare type KnowledgeDiscoveryTeam = {
|
|
55207
|
+
__typename?: 'KnowledgeDiscoveryTeam';
|
|
55208
|
+
id: Scalars['String']['output'];
|
|
55209
|
+
};
|
|
55210
|
+
export declare type KnowledgeDiscoveryTeamSearchResult = KnowledgeDiscoveryTeam | QueryError;
|
|
55050
55211
|
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
55051
55212
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
55052
55213
|
description: Scalars['String']['output'];
|
|
@@ -55080,6 +55241,19 @@ export declare type KnowledgeDiscoveryUpdateAdminhubBookmarkPayload = Payload &
|
|
|
55080
55241
|
errors?: Maybe<Array<MutationError>>;
|
|
55081
55242
|
success: Scalars['Boolean']['output'];
|
|
55082
55243
|
};
|
|
55244
|
+
export declare type KnowledgeDiscoveryUpdateRelatedEntitiesInput = {
|
|
55245
|
+
actions?: InputMaybe<Array<InputMaybe<KnowledgeDiscoveryRelatedEntityAction>>>;
|
|
55246
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
55247
|
+
entity: Scalars['ID']['input'];
|
|
55248
|
+
entityType: KnowledgeDiscoveryEntityType;
|
|
55249
|
+
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
55250
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55251
|
+
};
|
|
55252
|
+
export declare type KnowledgeDiscoveryUpdateRelatedEntitiesPayload = Payload & {
|
|
55253
|
+
__typename?: 'KnowledgeDiscoveryUpdateRelatedEntitiesPayload';
|
|
55254
|
+
errors?: Maybe<Array<MutationError>>;
|
|
55255
|
+
success: Scalars['Boolean']['output'];
|
|
55256
|
+
};
|
|
55083
55257
|
export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
55084
55258
|
__typename?: 'KnowledgeDiscoveryUser';
|
|
55085
55259
|
id: Scalars['ID']['output'];
|
|
@@ -61938,6 +62112,7 @@ export declare type Query = {
|
|
|
61938
62112
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
61939
62113
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
61940
62114
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
62115
|
+
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
61941
62116
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
61942
62117
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
61943
62118
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -62028,6 +62203,7 @@ export declare type Query = {
|
|
|
62028
62203
|
pricings: ContentPlatformPricingSearchConnection;
|
|
62029
62204
|
productListing?: Maybe<ProductListingResult>;
|
|
62030
62205
|
productListings: Array<ProductListingResult>;
|
|
62206
|
+
radar_healthcheck: Scalars['String']['output'];
|
|
62031
62207
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62032
62208
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
62033
62209
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -63177,6 +63353,10 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
63177
63353
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
63178
63354
|
ids: Array<Scalars['ID']['input']>;
|
|
63179
63355
|
};
|
|
63356
|
+
export declare type QueryDevai_AutodevJobLogGroupsArgs = {
|
|
63357
|
+
cloudId: Scalars['ID']['input'];
|
|
63358
|
+
jobId: Scalars['ID']['input'];
|
|
63359
|
+
};
|
|
63180
63360
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
63181
63361
|
appId: Scalars['ID']['input'];
|
|
63182
63362
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -63398,6 +63578,9 @@ export declare type QueryProductListingsArgs = {
|
|
|
63398
63578
|
ids: Array<Scalars['ID']['input']>;
|
|
63399
63579
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63400
63580
|
};
|
|
63581
|
+
export declare type QueryRadar_HealthcheckArgs = {
|
|
63582
|
+
cloudId: Scalars['ID']['input'];
|
|
63583
|
+
};
|
|
63401
63584
|
export declare type QueryReleaseNoteArgs = {
|
|
63402
63585
|
id: Scalars['String']['input'];
|
|
63403
63586
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66020,16 +66203,11 @@ export declare type ShepherdClassificationsConnection = {
|
|
|
66020
66203
|
export declare type ShepherdClassificationsQueries = {
|
|
66021
66204
|
__typename?: 'ShepherdClassificationsQueries';
|
|
66022
66205
|
byResource?: Maybe<ShepherdClassificationsResult>;
|
|
66023
|
-
bySpace?: Maybe<ShepherdClassificationsResult>;
|
|
66024
66206
|
};
|
|
66025
66207
|
export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
66026
66208
|
aris: Array<Scalars['ID']['input']>;
|
|
66027
66209
|
workspaceId: Scalars['ID']['input'];
|
|
66028
66210
|
};
|
|
66029
|
-
export declare type ShepherdClassificationsQueriesBySpaceArgs = {
|
|
66030
|
-
spaceAris: Array<Scalars['ID']['input']>;
|
|
66031
|
-
workspaceId: Scalars['ID']['input'];
|
|
66032
|
-
};
|
|
66033
66211
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
66034
66212
|
export declare type ShepherdCreateAlertInput = {
|
|
66035
66213
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -69100,6 +69278,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
69100
69278
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
69101
69279
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
69102
69280
|
url?: Maybe<Scalars['URL']['output']>;
|
|
69281
|
+
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
69103
69282
|
};
|
|
69104
69283
|
export declare type TrelloBoardViewer = {
|
|
69105
69284
|
__typename?: 'TrelloBoardViewer';
|
|
@@ -69122,6 +69301,11 @@ export declare type TrelloBoardViewerSidebar = {
|
|
|
69122
69301
|
__typename?: 'TrelloBoardViewerSidebar';
|
|
69123
69302
|
show?: Maybe<Scalars['Boolean']['output']>;
|
|
69124
69303
|
};
|
|
69304
|
+
export declare type TrelloBoardWorkspaceUpdated = {
|
|
69305
|
+
__typename?: 'TrelloBoardWorkspaceUpdated';
|
|
69306
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
69307
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
69308
|
+
};
|
|
69125
69309
|
export declare type TrelloCard = Node & {
|
|
69126
69310
|
__typename?: 'TrelloCard';
|
|
69127
69311
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
@@ -69761,16 +69945,16 @@ export declare type TrelloPlannerCalendarEventsArgs = {
|
|
|
69761
69945
|
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
69762
69946
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
69763
69947
|
accountType: TrelloSupportedPlannerProviders;
|
|
69764
|
-
allCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69765
69948
|
displayName: Scalars['String']['output'];
|
|
69766
69949
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
69767
69950
|
id: Scalars['ID']['output'];
|
|
69951
|
+
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69768
69952
|
};
|
|
69769
|
-
export declare type
|
|
69953
|
+
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
69770
69954
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69771
69955
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69772
69956
|
};
|
|
69773
|
-
export declare type
|
|
69957
|
+
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
69774
69958
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69775
69959
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69776
69960
|
};
|
|
@@ -69928,7 +70112,6 @@ export declare type TrelloProviderCalendarInterface = {
|
|
|
69928
70112
|
};
|
|
69929
70113
|
export declare type TrelloQueryApi = {
|
|
69930
70114
|
__typename?: 'TrelloQueryApi';
|
|
69931
|
-
allPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69932
70115
|
board?: Maybe<TrelloBoard>;
|
|
69933
70116
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
69934
70117
|
card?: Maybe<TrelloCard>;
|
|
@@ -69939,17 +70122,13 @@ export declare type TrelloQueryApi = {
|
|
|
69939
70122
|
list?: Maybe<TrelloList>;
|
|
69940
70123
|
member?: Maybe<TrelloMember>;
|
|
69941
70124
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
70125
|
+
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69942
70126
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
69943
70127
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
69944
70128
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
69945
70129
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
69946
70130
|
workspace?: Maybe<TrelloWorkspace>;
|
|
69947
70131
|
};
|
|
69948
|
-
export declare type TrelloQueryApiAllPlannerCalendarsByAccountIdArgs = {
|
|
69949
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69950
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69951
|
-
id: Scalars['ID']['input'];
|
|
69952
|
-
};
|
|
69953
70132
|
export declare type TrelloQueryApiBoardArgs = {
|
|
69954
70133
|
id: Scalars['ID']['input'];
|
|
69955
70134
|
};
|
|
@@ -69981,6 +70160,11 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
|
69981
70160
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69982
70161
|
id: Scalars['ID']['input'];
|
|
69983
70162
|
};
|
|
70163
|
+
export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
70164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70165
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70166
|
+
id: Scalars['ID']['input'];
|
|
70167
|
+
};
|
|
69984
70168
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
69985
70169
|
ids: Array<Scalars['ID']['input']>;
|
|
69986
70170
|
};
|
|
@@ -71463,6 +71647,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
71463
71647
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
71464
71648
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
71465
71649
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
71650
|
+
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
71466
71651
|
respondToQueries: Scalars['Boolean']['output'];
|
|
71467
71652
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
71468
71653
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -71748,6 +71933,11 @@ export declare type VirtualAgentJsmChatContext = {
|
|
|
71748
71933
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
71749
71934
|
slackSetupLink?: Maybe<Scalars['String']['output']>;
|
|
71750
71935
|
};
|
|
71936
|
+
export declare type VirtualAgentLiveIntentCountResponse = {
|
|
71937
|
+
__typename?: 'VirtualAgentLiveIntentCountResponse';
|
|
71938
|
+
containerId: Scalars['ID']['output'];
|
|
71939
|
+
liveIntentsCount: Scalars['Int']['output'];
|
|
71940
|
+
};
|
|
71751
71941
|
export declare type VirtualAgentMutationApi = {
|
|
71752
71942
|
__typename?: 'VirtualAgentMutationApi';
|
|
71753
71943
|
createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
|
|
@@ -72257,6 +72447,11 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
72257
72447
|
export declare type WorkSuggestionsInput = {
|
|
72258
72448
|
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
72259
72449
|
};
|
|
72450
|
+
export declare type WorkSuggestionsIssueStatus = {
|
|
72451
|
+
__typename?: 'WorkSuggestionsIssueStatus';
|
|
72452
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
72453
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
72454
|
+
};
|
|
72260
72455
|
export declare type WorkSuggestionsJiraAssignee = {
|
|
72261
72456
|
__typename?: 'WorkSuggestionsJiraAssignee';
|
|
72262
72457
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -72459,8 +72654,10 @@ export declare type WorkSuggestionsStuckIssueTask = WorkSuggestionsPeriscopeTask
|
|
|
72459
72654
|
__typename?: 'WorkSuggestionsStuckIssueTask';
|
|
72460
72655
|
assignee?: Maybe<WorkSuggestionsJiraAssignee>;
|
|
72461
72656
|
id: Scalars['String']['output'];
|
|
72657
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
72462
72658
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
72463
72659
|
priority?: Maybe<WorkSuggestionsPriority>;
|
|
72660
|
+
status?: Maybe<WorkSuggestionsIssueStatus>;
|
|
72464
72661
|
stuckData?: Maybe<WorkSuggestionsStuckData>;
|
|
72465
72662
|
title: Scalars['String']['output'];
|
|
72466
72663
|
url: Scalars['String']['output'];
|