@forge/cli-shared 5.5.3-next.0 → 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 +14 -0
- package/out/graphql/graphql-types.d.ts +231 -27
- 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
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.5.3-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [5f02b70]
|
|
8
|
+
- @forge/manifest@7.9.0-next.1
|
|
9
|
+
|
|
10
|
+
## 5.5.3-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [32601f4]
|
|
15
|
+
- @forge/manifest@7.8.1-next.0
|
|
16
|
+
|
|
3
17
|
## 5.5.3-next.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -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>;
|
|
@@ -43389,6 +43483,7 @@ export declare type JiraIssueFieldSetsByIdArgs = {
|
|
|
43389
43483
|
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
43390
43484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43391
43485
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
43486
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
43392
43487
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
43393
43488
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43394
43489
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -47179,6 +47274,7 @@ export declare type JiraPlan = Node & {
|
|
|
47179
47274
|
id: Scalars['ID']['output'];
|
|
47180
47275
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
47181
47276
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
47277
|
+
owner?: Maybe<User>;
|
|
47182
47278
|
planId?: Maybe<Scalars['Long']['output']>;
|
|
47183
47279
|
planStatus?: Maybe<JiraPlanStatus>;
|
|
47184
47280
|
planUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -47348,6 +47444,7 @@ export declare type JiraProject = Node & {
|
|
|
47348
47444
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
47349
47445
|
id: Scalars['ID']['output'];
|
|
47350
47446
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
47447
|
+
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
47351
47448
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
47352
47449
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
47353
47450
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
@@ -47393,6 +47490,7 @@ export declare type JiraProject = Node & {
|
|
|
47393
47490
|
versions?: Maybe<JiraVersionConnection>;
|
|
47394
47491
|
versionsV2?: Maybe<JiraVersionConnectionResult>;
|
|
47395
47492
|
virtualAgentConfiguration?: Maybe<VirtualAgentConfigurationResult>;
|
|
47493
|
+
virtualAgentLiveIntentsCount?: Maybe<VirtualAgentLiveIntentCountResponse>;
|
|
47396
47494
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
47397
47495
|
};
|
|
47398
47496
|
export declare type JiraProjectActionArgs = {
|
|
@@ -48229,6 +48327,7 @@ export declare type JiraQuery = {
|
|
|
48229
48327
|
notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
|
|
48230
48328
|
permission?: Maybe<JiraPermission>;
|
|
48231
48329
|
permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
|
|
48330
|
+
planById?: Maybe<JiraPlan>;
|
|
48232
48331
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
48233
48332
|
projectCleanupLogTableEntries?: Maybe<JiraProjectCleanupLogTableEntryConnection>;
|
|
48234
48333
|
projectCleanupRecommendations?: Maybe<JiraProjectCleanupRecommendationConnection>;
|
|
@@ -48912,6 +49011,9 @@ export declare type JiraQueryPermissionSchemeGrantsArgs = {
|
|
|
48912
49011
|
permissionKey?: InputMaybe<Scalars['String']['input']>;
|
|
48913
49012
|
schemeId: Scalars['ID']['input'];
|
|
48914
49013
|
};
|
|
49014
|
+
export declare type JiraQueryPlanByIdArgs = {
|
|
49015
|
+
id: Scalars['ID']['input'];
|
|
49016
|
+
};
|
|
48915
49017
|
export declare type JiraQueryPostIncidentReviewLinksByIdsArgs = {
|
|
48916
49018
|
ids: Array<Scalars['ID']['input']>;
|
|
48917
49019
|
};
|
|
@@ -49760,6 +49862,41 @@ export declare enum JiraScenarioType {
|
|
|
49760
49862
|
Deletedfromjira = "DELETEDFROMJIRA",
|
|
49761
49863
|
Updated = "UPDATED"
|
|
49762
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
|
+
};
|
|
49763
49900
|
export declare type JiraScheduleCalendarIssuePayload = Payload & {
|
|
49764
49901
|
__typename?: 'JiraScheduleCalendarIssuePayload';
|
|
49765
49902
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -52632,7 +52769,7 @@ export declare type JiraUserSegmentation = {
|
|
|
52632
52769
|
role?: Maybe<Scalars['String']['output']>;
|
|
52633
52770
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
52634
52771
|
};
|
|
52635
|
-
export declare type JiraVersion = JiraSelectableValue & Node & {
|
|
52772
|
+
export declare type JiraVersion = JiraScenarioVersionLike & JiraSelectableValue & Node & {
|
|
52636
52773
|
__typename?: 'JiraVersion';
|
|
52637
52774
|
approvers?: Maybe<JiraVersionApproverConnection>;
|
|
52638
52775
|
availableSites?: Maybe<JiraReleaseNotesInConfluenceAvailableSitesConnection>;
|
|
@@ -52977,8 +53114,10 @@ export declare type JiraVersionPlanScenarioValues = {
|
|
|
52977
53114
|
description?: Maybe<Scalars['String']['output']>;
|
|
52978
53115
|
name?: Maybe<Scalars['String']['output']>;
|
|
52979
53116
|
releaseDate?: Maybe<Scalars['DateTime']['output']>;
|
|
53117
|
+
releaseDateValue?: Maybe<JiraDateScenarioValueField>;
|
|
52980
53118
|
scenarioType?: Maybe<JiraScenarioType>;
|
|
52981
53119
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
53120
|
+
startDateValue?: Maybe<JiraDateScenarioValueField>;
|
|
52982
53121
|
};
|
|
52983
53122
|
export declare type JiraVersionRelatedWork = {
|
|
52984
53123
|
__typename?: 'JiraVersionRelatedWork';
|
|
@@ -54668,7 +54807,7 @@ export declare type KnowledgeBaseSourceEdge = {
|
|
|
54668
54807
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
54669
54808
|
node: KnowledgeBaseSource;
|
|
54670
54809
|
};
|
|
54671
|
-
export declare type KnowledgeBaseSourcePermissions =
|
|
54810
|
+
export declare type KnowledgeBaseSourcePermissions = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
|
|
54672
54811
|
export declare type KnowledgeBaseSources = {
|
|
54673
54812
|
__typename?: 'KnowledgeBaseSources';
|
|
54674
54813
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
@@ -54691,7 +54830,13 @@ export declare type KnowledgeBaseSpacePermissionMutationResponse = {
|
|
|
54691
54830
|
permission?: Maybe<KnowledgeBaseSpacePermission>;
|
|
54692
54831
|
success: Scalars['Boolean']['output'];
|
|
54693
54832
|
};
|
|
54694
|
-
export declare type
|
|
54833
|
+
export declare type KnowledgeBaseSpacePermissionQueryError = {
|
|
54834
|
+
__typename?: 'KnowledgeBaseSpacePermissionQueryError';
|
|
54835
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
54836
|
+
message: Scalars['String']['output'];
|
|
54837
|
+
spaceAri: Scalars['ID']['output'];
|
|
54838
|
+
};
|
|
54839
|
+
export declare type KnowledgeBaseSpacePermissionQueryResponse = KnowledgeBaseSpacePermissionQueryError | KnowledgeBaseSpacePermissionResponse;
|
|
54695
54840
|
export declare type KnowledgeBaseSpacePermissionResponse = {
|
|
54696
54841
|
__typename?: 'KnowledgeBaseSpacePermissionResponse';
|
|
54697
54842
|
permission: KnowledgeBaseSpacePermission;
|
|
@@ -54923,6 +55068,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
54923
55068
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
54924
55069
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
54925
55070
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
55071
|
+
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
54926
55072
|
};
|
|
54927
55073
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
54928
55074
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
@@ -54936,6 +55082,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
|
54936
55082
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
54937
55083
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
54938
55084
|
};
|
|
55085
|
+
export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
|
|
55086
|
+
input: KnowledgeDiscoveryUpdateRelatedEntitiesInput;
|
|
55087
|
+
};
|
|
54939
55088
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
54940
55089
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
54941
55090
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -54953,6 +55102,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
54953
55102
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
54954
55103
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
54955
55104
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
55105
|
+
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
54956
55106
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
54957
55107
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
54958
55108
|
};
|
|
@@ -55011,6 +55161,11 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
55011
55161
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
55012
55162
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55013
55163
|
};
|
|
55164
|
+
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
55165
|
+
orgId: Scalars['String']['input'];
|
|
55166
|
+
teamName: Scalars['String']['input'];
|
|
55167
|
+
workspaceId: Scalars['String']['input'];
|
|
55168
|
+
};
|
|
55014
55169
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
55015
55170
|
locale: Scalars['String']['input'];
|
|
55016
55171
|
query: Scalars['String']['input'];
|
|
@@ -55022,6 +55177,14 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
55022
55177
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55023
55178
|
};
|
|
55024
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
|
+
}
|
|
55025
55188
|
export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
55026
55189
|
__typename?: 'KnowledgeDiscoveryRelatedEntityConnection';
|
|
55027
55190
|
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
@@ -55040,6 +55203,11 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
55040
55203
|
transformedQuery: Scalars['String']['output'];
|
|
55041
55204
|
};
|
|
55042
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;
|
|
55043
55211
|
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
55044
55212
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
55045
55213
|
description: Scalars['String']['output'];
|
|
@@ -55073,6 +55241,19 @@ export declare type KnowledgeDiscoveryUpdateAdminhubBookmarkPayload = Payload &
|
|
|
55073
55241
|
errors?: Maybe<Array<MutationError>>;
|
|
55074
55242
|
success: Scalars['Boolean']['output'];
|
|
55075
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
|
+
};
|
|
55076
55257
|
export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
55077
55258
|
__typename?: 'KnowledgeDiscoveryUser';
|
|
55078
55259
|
id: Scalars['ID']['output'];
|
|
@@ -61931,6 +62112,7 @@ export declare type Query = {
|
|
|
61931
62112
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
61932
62113
|
devOpsServicesById?: Maybe<Array<DevOpsService>>;
|
|
61933
62114
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
62115
|
+
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
61934
62116
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
61935
62117
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
61936
62118
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -62021,6 +62203,7 @@ export declare type Query = {
|
|
|
62021
62203
|
pricings: ContentPlatformPricingSearchConnection;
|
|
62022
62204
|
productListing?: Maybe<ProductListingResult>;
|
|
62023
62205
|
productListings: Array<ProductListingResult>;
|
|
62206
|
+
radar_healthcheck: Scalars['String']['output'];
|
|
62024
62207
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
62025
62208
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
62026
62209
|
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
|
|
@@ -63170,6 +63353,10 @@ export declare type QueryDevOpsServicesArgs = {
|
|
|
63170
63353
|
export declare type QueryDevOpsServicesByIdArgs = {
|
|
63171
63354
|
ids: Array<Scalars['ID']['input']>;
|
|
63172
63355
|
};
|
|
63356
|
+
export declare type QueryDevai_AutodevJobLogGroupsArgs = {
|
|
63357
|
+
cloudId: Scalars['ID']['input'];
|
|
63358
|
+
jobId: Scalars['ID']['input'];
|
|
63359
|
+
};
|
|
63173
63360
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
63174
63361
|
appId: Scalars['ID']['input'];
|
|
63175
63362
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -63391,6 +63578,9 @@ export declare type QueryProductListingsArgs = {
|
|
|
63391
63578
|
ids: Array<Scalars['ID']['input']>;
|
|
63392
63579
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63393
63580
|
};
|
|
63581
|
+
export declare type QueryRadar_HealthcheckArgs = {
|
|
63582
|
+
cloudId: Scalars['ID']['input'];
|
|
63583
|
+
};
|
|
63394
63584
|
export declare type QueryReleaseNoteArgs = {
|
|
63395
63585
|
id: Scalars['String']['input'];
|
|
63396
63586
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -66013,16 +66203,11 @@ export declare type ShepherdClassificationsConnection = {
|
|
|
66013
66203
|
export declare type ShepherdClassificationsQueries = {
|
|
66014
66204
|
__typename?: 'ShepherdClassificationsQueries';
|
|
66015
66205
|
byResource?: Maybe<ShepherdClassificationsResult>;
|
|
66016
|
-
bySpace?: Maybe<ShepherdClassificationsResult>;
|
|
66017
66206
|
};
|
|
66018
66207
|
export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
66019
66208
|
aris: Array<Scalars['ID']['input']>;
|
|
66020
66209
|
workspaceId: Scalars['ID']['input'];
|
|
66021
66210
|
};
|
|
66022
|
-
export declare type ShepherdClassificationsQueriesBySpaceArgs = {
|
|
66023
|
-
spaceAris: Array<Scalars['ID']['input']>;
|
|
66024
|
-
workspaceId: Scalars['ID']['input'];
|
|
66025
|
-
};
|
|
66026
66211
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
66027
66212
|
export declare type ShepherdCreateAlertInput = {
|
|
66028
66213
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -69093,6 +69278,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
69093
69278
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
69094
69279
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
69095
69280
|
url?: Maybe<Scalars['URL']['output']>;
|
|
69281
|
+
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
69096
69282
|
};
|
|
69097
69283
|
export declare type TrelloBoardViewer = {
|
|
69098
69284
|
__typename?: 'TrelloBoardViewer';
|
|
@@ -69115,6 +69301,11 @@ export declare type TrelloBoardViewerSidebar = {
|
|
|
69115
69301
|
__typename?: 'TrelloBoardViewerSidebar';
|
|
69116
69302
|
show?: Maybe<Scalars['Boolean']['output']>;
|
|
69117
69303
|
};
|
|
69304
|
+
export declare type TrelloBoardWorkspaceUpdated = {
|
|
69305
|
+
__typename?: 'TrelloBoardWorkspaceUpdated';
|
|
69306
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
69307
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
69308
|
+
};
|
|
69118
69309
|
export declare type TrelloCard = Node & {
|
|
69119
69310
|
__typename?: 'TrelloCard';
|
|
69120
69311
|
attachments?: Maybe<TrelloAttachmentConnection>;
|
|
@@ -69754,16 +69945,16 @@ export declare type TrelloPlannerCalendarEventsArgs = {
|
|
|
69754
69945
|
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
69755
69946
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
69756
69947
|
accountType: TrelloSupportedPlannerProviders;
|
|
69757
|
-
allCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69758
69948
|
displayName: Scalars['String']['output'];
|
|
69759
69949
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
69760
69950
|
id: Scalars['ID']['output'];
|
|
69951
|
+
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69761
69952
|
};
|
|
69762
|
-
export declare type
|
|
69953
|
+
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
69763
69954
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69764
69955
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69765
69956
|
};
|
|
69766
|
-
export declare type
|
|
69957
|
+
export declare type TrelloPlannerCalendarAccountProviderCalendarsArgs = {
|
|
69767
69958
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69768
69959
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69769
69960
|
};
|
|
@@ -69921,7 +70112,6 @@ export declare type TrelloProviderCalendarInterface = {
|
|
|
69921
70112
|
};
|
|
69922
70113
|
export declare type TrelloQueryApi = {
|
|
69923
70114
|
__typename?: 'TrelloQueryApi';
|
|
69924
|
-
allPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69925
70115
|
board?: Maybe<TrelloBoard>;
|
|
69926
70116
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
69927
70117
|
card?: Maybe<TrelloCard>;
|
|
@@ -69932,17 +70122,13 @@ export declare type TrelloQueryApi = {
|
|
|
69932
70122
|
list?: Maybe<TrelloList>;
|
|
69933
70123
|
member?: Maybe<TrelloMember>;
|
|
69934
70124
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
70125
|
+
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
69935
70126
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
69936
70127
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
69937
70128
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
69938
70129
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
69939
70130
|
workspace?: Maybe<TrelloWorkspace>;
|
|
69940
70131
|
};
|
|
69941
|
-
export declare type TrelloQueryApiAllPlannerCalendarsByAccountIdArgs = {
|
|
69942
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
69943
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69944
|
-
id: Scalars['ID']['input'];
|
|
69945
|
-
};
|
|
69946
70132
|
export declare type TrelloQueryApiBoardArgs = {
|
|
69947
70133
|
id: Scalars['ID']['input'];
|
|
69948
70134
|
};
|
|
@@ -69974,6 +70160,11 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
|
69974
70160
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69975
70161
|
id: Scalars['ID']['input'];
|
|
69976
70162
|
};
|
|
70163
|
+
export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
70164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70165
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70166
|
+
id: Scalars['ID']['input'];
|
|
70167
|
+
};
|
|
69977
70168
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
69978
70169
|
ids: Array<Scalars['ID']['input']>;
|
|
69979
70170
|
};
|
|
@@ -71456,6 +71647,7 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
71456
71647
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
71457
71648
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
71458
71649
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
71650
|
+
liveIntentsCount?: Maybe<Scalars['Int']['output']>;
|
|
71459
71651
|
respondToQueries: Scalars['Boolean']['output'];
|
|
71460
71652
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
71461
71653
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -71741,6 +71933,11 @@ export declare type VirtualAgentJsmChatContext = {
|
|
|
71741
71933
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
71742
71934
|
slackSetupLink?: Maybe<Scalars['String']['output']>;
|
|
71743
71935
|
};
|
|
71936
|
+
export declare type VirtualAgentLiveIntentCountResponse = {
|
|
71937
|
+
__typename?: 'VirtualAgentLiveIntentCountResponse';
|
|
71938
|
+
containerId: Scalars['ID']['output'];
|
|
71939
|
+
liveIntentsCount: Scalars['Int']['output'];
|
|
71940
|
+
};
|
|
71744
71941
|
export declare type VirtualAgentMutationApi = {
|
|
71745
71942
|
__typename?: 'VirtualAgentMutationApi';
|
|
71746
71943
|
createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
|
|
@@ -72250,6 +72447,11 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
72250
72447
|
export declare type WorkSuggestionsInput = {
|
|
72251
72448
|
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
72252
72449
|
};
|
|
72450
|
+
export declare type WorkSuggestionsIssueStatus = {
|
|
72451
|
+
__typename?: 'WorkSuggestionsIssueStatus';
|
|
72452
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
72453
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
72454
|
+
};
|
|
72253
72455
|
export declare type WorkSuggestionsJiraAssignee = {
|
|
72254
72456
|
__typename?: 'WorkSuggestionsJiraAssignee';
|
|
72255
72457
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -72452,8 +72654,10 @@ export declare type WorkSuggestionsStuckIssueTask = WorkSuggestionsPeriscopeTask
|
|
|
72452
72654
|
__typename?: 'WorkSuggestionsStuckIssueTask';
|
|
72453
72655
|
assignee?: Maybe<WorkSuggestionsJiraAssignee>;
|
|
72454
72656
|
id: Scalars['String']['output'];
|
|
72657
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
72455
72658
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
72456
72659
|
priority?: Maybe<WorkSuggestionsPriority>;
|
|
72660
|
+
status?: Maybe<WorkSuggestionsIssueStatus>;
|
|
72457
72661
|
stuckData?: Maybe<WorkSuggestionsStuckData>;
|
|
72458
72662
|
title: Scalars['String']['output'];
|
|
72459
72663
|
url: Scalars['String']['output'];
|