@forge/cli-shared 8.18.1-next.0 → 8.18.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 +7 -0
- package/out/graphql/graphql-types.d.ts +456 -57
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +56 -11
- package/package.json +2 -2
|
@@ -84,6 +84,10 @@ export declare type Scalars = {
|
|
|
84
84
|
[key: string]: any;
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
|
+
JSONObject: {
|
|
88
|
+
input: any;
|
|
89
|
+
output: any;
|
|
90
|
+
};
|
|
87
91
|
KitsuneADF: {
|
|
88
92
|
input: any;
|
|
89
93
|
output: any;
|
|
@@ -212,7 +216,7 @@ export declare type AvpAnalyticsDataSource = {
|
|
|
212
216
|
hasSubDataSources: Scalars['Boolean']['output'];
|
|
213
217
|
id: Scalars['ID']['output'];
|
|
214
218
|
metadata?: Maybe<AvpAnalyticsDataSourceMetadata>;
|
|
215
|
-
models?: Maybe<
|
|
219
|
+
models?: Maybe<AvpAnalyticsModelConnection>;
|
|
216
220
|
name: Scalars['String']['output'];
|
|
217
221
|
subDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
218
222
|
};
|
|
@@ -227,22 +231,6 @@ export declare type AvpAnalyticsDataSourceMetadata = {
|
|
|
227
231
|
__typename?: 'AVPAnalyticsDataSourceMetadata';
|
|
228
232
|
icon: Scalars['String']['output'];
|
|
229
233
|
};
|
|
230
|
-
export declare type AvpAnalyticsDataSourceModel = {
|
|
231
|
-
__typename?: 'AVPAnalyticsDataSourceModel';
|
|
232
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
233
|
-
id: Scalars['ID']['output'];
|
|
234
|
-
name: Scalars['String']['output'];
|
|
235
|
-
};
|
|
236
|
-
export declare type AvpAnalyticsDataSourceModelEdge = {
|
|
237
|
-
__typename?: 'AVPAnalyticsDataSourceModelEdge';
|
|
238
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
239
|
-
node: AvpAnalyticsDataSourceModel;
|
|
240
|
-
};
|
|
241
|
-
export declare type AvpAnalyticsDataSourceModelsConnection = {
|
|
242
|
-
__typename?: 'AVPAnalyticsDataSourceModelsConnection';
|
|
243
|
-
edges?: Maybe<Array<AvpAnalyticsDataSourceModelEdge>>;
|
|
244
|
-
pageInfo: PageInfo;
|
|
245
|
-
};
|
|
246
234
|
export declare type AvpAnalyticsDeleteModelInput = {
|
|
247
235
|
forceDelete: Scalars['Boolean']['input'];
|
|
248
236
|
modelId: Scalars['ID']['input'];
|
|
@@ -392,6 +380,7 @@ export declare type AvpAnalyticsMetric = {
|
|
|
392
380
|
};
|
|
393
381
|
export declare type AvpAnalyticsModel = {
|
|
394
382
|
__typename?: 'AVPAnalyticsModel';
|
|
383
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
395
384
|
data?: Maybe<AvpAnalyticsModelDataConnection>;
|
|
396
385
|
definition?: Maybe<AvpAnalyticsModelDefinition>;
|
|
397
386
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -3861,6 +3850,41 @@ export declare type AgentAiSummary = {
|
|
|
3861
3850
|
adf?: Maybe<Scalars['String']['output']>;
|
|
3862
3851
|
text?: Maybe<Scalars['String']['output']>;
|
|
3863
3852
|
};
|
|
3853
|
+
export declare type AgentSession = AgentSessionNode & {
|
|
3854
|
+
__typename?: 'AgentSession';
|
|
3855
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
3856
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
3857
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3858
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
3859
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
3860
|
+
};
|
|
3861
|
+
export declare type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
3862
|
+
__typename?: 'AgentSessionAssociation';
|
|
3863
|
+
_type?: Maybe<Scalars['String']['output']>;
|
|
3864
|
+
agentSession?: Maybe<AgentSession>;
|
|
3865
|
+
agentSessionId?: Maybe<Scalars['String']['output']>;
|
|
3866
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
3867
|
+
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
3868
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3869
|
+
version?: Maybe<Scalars['Long']['output']>;
|
|
3870
|
+
};
|
|
3871
|
+
export declare type AgentSessionAssociationConnection = {
|
|
3872
|
+
__typename?: 'AgentSessionAssociationConnection';
|
|
3873
|
+
edges?: Maybe<Array<Maybe<AgentSessionAssociationEdge>>>;
|
|
3874
|
+
nodes?: Maybe<Array<Maybe<AgentSessionAssociation>>>;
|
|
3875
|
+
pageInfo?: Maybe<PageInfo>;
|
|
3876
|
+
};
|
|
3877
|
+
export declare type AgentSessionAssociationEdge = {
|
|
3878
|
+
__typename?: 'AgentSessionAssociationEdge';
|
|
3879
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
3880
|
+
node?: Maybe<AgentSessionAssociation>;
|
|
3881
|
+
};
|
|
3882
|
+
export declare type AgentSessionAssociationNode = {
|
|
3883
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3884
|
+
};
|
|
3885
|
+
export declare type AgentSessionNode = {
|
|
3886
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3887
|
+
};
|
|
3864
3888
|
export declare type AgentStudio3pKnowledgeFilter = {
|
|
3865
3889
|
__typename?: 'AgentStudio3pKnowledgeFilter';
|
|
3866
3890
|
rawFilter?: Maybe<Scalars['String']['output']>;
|
|
@@ -4042,6 +4066,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
4042
4066
|
accessIdentityMode?: Maybe<AgentStudioAccessIdentityMode>;
|
|
4043
4067
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
4044
4068
|
agentSchemaNumber?: Maybe<Scalars['Int']['output']>;
|
|
4069
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4045
4070
|
authoringTeam?: Maybe<TeamV2>;
|
|
4046
4071
|
behaviour?: Maybe<Scalars['String']['output']>;
|
|
4047
4072
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
@@ -4140,6 +4165,7 @@ export declare type AgentStudioAuthoringTeamInput = {
|
|
|
4140
4165
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
4141
4166
|
};
|
|
4142
4167
|
export declare type AgentStudioBaseConfiguration = {
|
|
4168
|
+
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4143
4169
|
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4144
4170
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
4145
4171
|
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -11093,8 +11119,10 @@ export declare type AssetsVerticalGenerateInsightsInput = {
|
|
|
11093
11119
|
export declare type AssetsVerticalGenerateInsightsPayload = Payload & {
|
|
11094
11120
|
__typename?: 'AssetsVerticalGenerateInsightsPayload';
|
|
11095
11121
|
errors?: Maybe<Array<MutationError>>;
|
|
11096
|
-
|
|
11122
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
11123
|
+
status: AssetsVerticalInsightsStatus;
|
|
11097
11124
|
success: Scalars['Boolean']['output'];
|
|
11125
|
+
suggestedPollIntervalMs?: Maybe<Scalars['Int']['output']>;
|
|
11098
11126
|
};
|
|
11099
11127
|
export declare type AssetsVerticalInsightCard = {
|
|
11100
11128
|
__typename?: 'AssetsVerticalInsightCard';
|
|
@@ -11175,11 +11203,26 @@ export declare type AssetsVerticalObjectNode = {
|
|
|
11175
11203
|
name?: Maybe<Scalars['String']['output']>;
|
|
11176
11204
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
11177
11205
|
};
|
|
11206
|
+
export declare type AssetsVerticalObjectType = {
|
|
11207
|
+
__typename?: 'AssetsVerticalObjectType';
|
|
11208
|
+
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
11209
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
11210
|
+
};
|
|
11178
11211
|
export declare enum AssetsVerticalObjectTypeCategory {
|
|
11179
11212
|
Hardwares = "HARDWARES",
|
|
11180
11213
|
Models = "MODELS",
|
|
11181
11214
|
Stockrooms = "STOCKROOMS"
|
|
11182
11215
|
}
|
|
11216
|
+
export declare type AssetsVerticalObjectTypes = {
|
|
11217
|
+
__typename?: 'AssetsVerticalObjectTypes';
|
|
11218
|
+
objectTypes?: Maybe<Array<Maybe<AssetsVerticalObjectType>>>;
|
|
11219
|
+
};
|
|
11220
|
+
export declare type AssetsVerticalObjectTypesInput = {
|
|
11221
|
+
category: AssetsVerticalObjectTypeCategory;
|
|
11222
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
11223
|
+
workspaceId: Scalars['ID']['input'];
|
|
11224
|
+
};
|
|
11225
|
+
export declare type AssetsVerticalObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
11183
11226
|
export declare type AssetsVerticalObjectsFilterCondition = {
|
|
11184
11227
|
key: Scalars['String']['input'];
|
|
11185
11228
|
operator: AssetsVerticalObjectsFilterOperator;
|
|
@@ -34167,6 +34210,7 @@ export declare type CplsFilterConfigurationJiraWorkItemsArgs = {
|
|
|
34167
34210
|
export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
|
|
34168
34211
|
export declare type CplsFilters = {
|
|
34169
34212
|
__typename?: 'CplsFilters';
|
|
34213
|
+
atlasProjectStates?: Maybe<Array<Scalars['String']['output']>>;
|
|
34170
34214
|
atlasProjects?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34171
34215
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
34172
34216
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -34176,6 +34220,7 @@ export declare type CplsFilters = {
|
|
|
34176
34220
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
34177
34221
|
};
|
|
34178
34222
|
export declare type CplsFiltersInput = {
|
|
34223
|
+
atlasProjectStates?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
34179
34224
|
atlasProjects?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
34180
34225
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
34181
34226
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -99201,24 +99246,35 @@ export declare type GravityField = {
|
|
|
99201
99246
|
global: Scalars['Boolean']['output'];
|
|
99202
99247
|
key: Scalars['String']['output'];
|
|
99203
99248
|
name: Scalars['String']['output'];
|
|
99204
|
-
options?: Maybe<Array<
|
|
99249
|
+
options?: Maybe<Array<GravityFieldOption>>;
|
|
99205
99250
|
type: Scalars['String']['output'];
|
|
99206
99251
|
};
|
|
99207
99252
|
export declare type GravityFieldDefinition = {
|
|
99208
99253
|
__typename?: 'GravityFieldDefinition';
|
|
99209
99254
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
99210
99255
|
description?: Maybe<Scalars['String']['output']>;
|
|
99211
|
-
global
|
|
99256
|
+
global?: Maybe<Scalars['Boolean']['output']>;
|
|
99212
99257
|
name: Scalars['String']['output'];
|
|
99213
|
-
options?: Maybe<Array<
|
|
99258
|
+
options?: Maybe<Array<GravityFieldDefinitionOption>>;
|
|
99214
99259
|
ref: Scalars['ID']['output'];
|
|
99215
99260
|
type: Scalars['String']['output'];
|
|
99216
99261
|
};
|
|
99262
|
+
export declare type GravityFieldDefinitionOption = {
|
|
99263
|
+
__typename?: 'GravityFieldDefinitionOption';
|
|
99264
|
+
ref?: Maybe<Scalars['ID']['output']>;
|
|
99265
|
+
value: Scalars['String']['output'];
|
|
99266
|
+
};
|
|
99217
99267
|
export declare type GravityFieldMappingProposals = {
|
|
99218
99268
|
__typename?: 'GravityFieldMappingProposals';
|
|
99219
99269
|
proposals: Array<GravityField>;
|
|
99220
99270
|
ref: Scalars['ID']['output'];
|
|
99221
99271
|
};
|
|
99272
|
+
export declare type GravityFieldOption = {
|
|
99273
|
+
__typename?: 'GravityFieldOption';
|
|
99274
|
+
disabled: Scalars['Boolean']['output'];
|
|
99275
|
+
id: Scalars['ID']['output'];
|
|
99276
|
+
value: Scalars['String']['output'];
|
|
99277
|
+
};
|
|
99222
99278
|
export declare type GravityFieldRefMappingInput = {
|
|
99223
99279
|
key: Scalars['String']['input'];
|
|
99224
99280
|
ref: Scalars['ID']['input'];
|
|
@@ -102751,9 +102807,6 @@ export declare type IncomingLinksCount = {
|
|
|
102751
102807
|
__typename?: 'IncomingLinksCount';
|
|
102752
102808
|
count?: Maybe<Scalars['Int']['output']>;
|
|
102753
102809
|
};
|
|
102754
|
-
export declare type IndexHintInputType = {
|
|
102755
|
-
hints?: InputMaybe<Array<InputMaybe<PreferredIndexInputType>>>;
|
|
102756
|
-
};
|
|
102757
102810
|
export declare type IndividualInlineTaskNotification = {
|
|
102758
102811
|
__typename?: 'IndividualInlineTaskNotification';
|
|
102759
102812
|
notificationAction?: Maybe<NotificationAction>;
|
|
@@ -111515,6 +111568,81 @@ export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
|
111515
111568
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111516
111569
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
111517
111570
|
};
|
|
111571
|
+
export declare type JiraGroupedTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
111572
|
+
__typename?: 'JiraGroupedTimelineView';
|
|
111573
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
111574
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
111575
|
+
defaultJql?: Maybe<Scalars['String']['output']>;
|
|
111576
|
+
error?: Maybe<QueryError>;
|
|
111577
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
111578
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
111579
|
+
groups?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
111580
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
111581
|
+
id: Scalars['ID']['output'];
|
|
111582
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
111583
|
+
isTimelineViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
111584
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
111585
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
111586
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
111587
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
111588
|
+
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
111589
|
+
timelineProjectSettings?: Maybe<JiraTimelineProjectSettings>;
|
|
111590
|
+
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
111591
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
111592
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
111593
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
111594
|
+
};
|
|
111595
|
+
export declare type JiraGroupedTimelineViewConditionalFormattingRulesArgs = {
|
|
111596
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111597
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111598
|
+
};
|
|
111599
|
+
export declare type JiraGroupedTimelineViewFieldSetsArgs = {
|
|
111600
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111601
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
111602
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
111603
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111604
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111605
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111606
|
+
};
|
|
111607
|
+
export declare type JiraGroupedTimelineViewGroupsArgs = {
|
|
111608
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111609
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
111610
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111611
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
111612
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
111613
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111614
|
+
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
111615
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111616
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111617
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111618
|
+
};
|
|
111619
|
+
export declare type JiraGroupedTimelineViewHasDefaultFieldSetsArgs = {
|
|
111620
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111621
|
+
};
|
|
111622
|
+
export declare type JiraGroupedTimelineViewIsTimelineViewConfigModifiedArgs = {
|
|
111623
|
+
timelineViewSettings?: InputMaybe<JiraTimelineViewSettings>;
|
|
111624
|
+
};
|
|
111625
|
+
export declare type JiraGroupedTimelineViewIsViewConfigModifiedArgs = {
|
|
111626
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111627
|
+
};
|
|
111628
|
+
export declare type JiraGroupedTimelineViewTimelineProjectSettingsArgs = {
|
|
111629
|
+
input?: InputMaybe<JiraTimelineProjectOrBoardInput>;
|
|
111630
|
+
};
|
|
111631
|
+
export declare type JiraGroupedTimelineViewTimelineSettingsArgs = {
|
|
111632
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
111633
|
+
timelineStaticViewInput?: InputMaybe<JiraTimelineStaticViewInput>;
|
|
111634
|
+
};
|
|
111635
|
+
export declare type JiraGroupedTimelineViewValidateJqlArgs = {
|
|
111636
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
111637
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
111638
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
111639
|
+
};
|
|
111640
|
+
export declare type JiraGroupedTimelineViewViewSettingsArgs = {
|
|
111641
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
111642
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
111643
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
111644
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
111645
|
+
};
|
|
111518
111646
|
export declare enum JiraGroupingSeparator {
|
|
111519
111647
|
Comma = "COMMA",
|
|
111520
111648
|
Locale = "LOCALE",
|
|
@@ -111741,6 +111869,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
111741
111869
|
__typename?: 'JiraIssue';
|
|
111742
111870
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
111743
111871
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
111872
|
+
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
111744
111873
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
111745
111874
|
archivedBy?: Maybe<User>;
|
|
111746
111875
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -111917,6 +112046,11 @@ export declare type JiraIssueAllActivitiesArgs = {
|
|
|
111917
112046
|
first: Scalars['Int']['input'];
|
|
111918
112047
|
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
111919
112048
|
};
|
|
112049
|
+
export declare type JiraIssueAllAgentSessionsArgs = {
|
|
112050
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
112051
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
112052
|
+
sort?: InputMaybe<Scalars['String']['input']>;
|
|
112053
|
+
};
|
|
111920
112054
|
export declare type JiraIssueApprovalActivitiesArgs = {
|
|
111921
112055
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
111922
112056
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -124511,6 +124645,7 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
124511
124645
|
__typename?: 'JiraSetIssueSearchHideDoneItemsPayload';
|
|
124512
124646
|
errors?: Maybe<Array<MutationError>>;
|
|
124513
124647
|
success: Scalars['Boolean']['output'];
|
|
124648
|
+
view?: Maybe<JiraView>;
|
|
124514
124649
|
};
|
|
124515
124650
|
export declare type JiraSetIssueSearchHideWarningsInput = {
|
|
124516
124651
|
hideWarnings: Scalars['Boolean']['input'];
|
|
@@ -128978,6 +129113,11 @@ export declare type JpdViewsServiceFilterInput = {
|
|
|
128978
129113
|
kind: Scalars['String']['input'];
|
|
128979
129114
|
values: Array<JpdViewsServiceFilterValueInput>;
|
|
128980
129115
|
};
|
|
129116
|
+
export declare type JpdViewsServiceFilterInput2 = {
|
|
129117
|
+
field: Scalars['String']['input'];
|
|
129118
|
+
kind: Scalars['String']['input'];
|
|
129119
|
+
values: Array<JpdViewsServiceFilterValueInput2>;
|
|
129120
|
+
};
|
|
128981
129121
|
export declare type JpdViewsServiceFilterValue = {
|
|
128982
129122
|
__typename?: 'JpdViewsServiceFilterValue';
|
|
128983
129123
|
enumValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -128991,6 +129131,12 @@ export declare type JpdViewsServiceFilterValueInput = {
|
|
|
128991
129131
|
operator?: InputMaybe<Scalars['String']['input']>;
|
|
128992
129132
|
stringValue?: InputMaybe<Scalars['String']['input']>;
|
|
128993
129133
|
};
|
|
129134
|
+
export declare type JpdViewsServiceFilterValueInput2 = {
|
|
129135
|
+
enumValue?: InputMaybe<Scalars['String']['input']>;
|
|
129136
|
+
operator?: InputMaybe<Scalars['String']['input']>;
|
|
129137
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
129138
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
129139
|
+
};
|
|
128994
129140
|
export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node & {
|
|
128995
129141
|
__typename?: 'JpdViewsServiceGlobalView';
|
|
128996
129142
|
assocToNewSpaces?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129311,6 +129457,42 @@ export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
|
129311
129457
|
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput>>>;
|
|
129312
129458
|
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
129313
129459
|
};
|
|
129460
|
+
export declare type JpdViewsServiceUpdateGlobalViewInput2 = {
|
|
129461
|
+
assocToNewSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129462
|
+
boldColors?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129463
|
+
colorBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
129464
|
+
colorStyle?: InputMaybe<Scalars['String']['input']>;
|
|
129465
|
+
columnSize?: InputMaybe<Scalars['String']['input']>;
|
|
129466
|
+
connectionsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129467
|
+
connectionsLayoutType?: InputMaybe<Scalars['String']['input']>;
|
|
129468
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
129469
|
+
descriptionNew?: InputMaybe<Scalars['JSON']['input']>;
|
|
129470
|
+
emoji?: InputMaybe<Scalars['String']['input']>;
|
|
129471
|
+
fieldRollups?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldRollupInput>>>;
|
|
129472
|
+
fields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
129473
|
+
filter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129474
|
+
groupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
129475
|
+
groupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
129476
|
+
groupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129477
|
+
hiddenFields?: InputMaybe<Array<InputMaybe<JpdViewsServiceFieldInput>>>;
|
|
129478
|
+
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129479
|
+
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129480
|
+
id: Scalars['ID']['input'];
|
|
129481
|
+
layoutType?: InputMaybe<Scalars['String']['input']>;
|
|
129482
|
+
matrixConfig?: InputMaybe<JpdViewsServiceMatrixConfigInput>;
|
|
129483
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
129484
|
+
numberColumnDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
129485
|
+
showConnectionsMatchingColumn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129486
|
+
showConnectionsMatchingGroup?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129487
|
+
sort?: InputMaybe<Array<InputMaybe<JpdViewsServiceSortInput>>>;
|
|
129488
|
+
sortMode?: InputMaybe<Scalars['String']['input']>;
|
|
129489
|
+
tableColumnSizes?: InputMaybe<Array<InputMaybe<JpdViewsServiceTableColumnSizeInput>>>;
|
|
129490
|
+
timelineConfig?: InputMaybe<JpdViewsServiceTimelineConfigInput>;
|
|
129491
|
+
verticalGroupBy?: InputMaybe<JpdViewsServiceFieldInput>;
|
|
129492
|
+
verticalGroupValues?: InputMaybe<Array<InputMaybe<JpdViewsServiceNestedIdInput>>>;
|
|
129493
|
+
verticalGroupsFilter?: InputMaybe<Array<InputMaybe<JpdViewsServiceFilterInput2>>>;
|
|
129494
|
+
visualizationType?: InputMaybe<JpdViewsServiceVisualizationType>;
|
|
129495
|
+
};
|
|
129314
129496
|
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
129315
129497
|
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
129316
129498
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -129581,8 +129763,19 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
129581
129763
|
Pending = "PENDING",
|
|
129582
129764
|
Waiting = "WAITING"
|
|
129583
129765
|
}
|
|
129766
|
+
export declare type JsmChannelsServiceAgentResolutionContentSource = {
|
|
129767
|
+
__typename?: 'JsmChannelsServiceAgentResolutionContentSource';
|
|
129768
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
129769
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
129770
|
+
metadata?: Maybe<Scalars['JSON']['output']>;
|
|
129771
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
129772
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
129773
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
129774
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
129775
|
+
};
|
|
129584
129776
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
129585
129777
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
129778
|
+
contentSources?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionContentSource>>>;
|
|
129586
129779
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
129587
129780
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
129588
129781
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
@@ -130798,6 +130991,7 @@ export declare type KitsuneEntitlements = {
|
|
|
130798
130991
|
};
|
|
130799
130992
|
export declare type KitsuneFeedback = Node & {
|
|
130800
130993
|
__typename?: 'KitsuneFeedback';
|
|
130994
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
130801
130995
|
chunks: KitsuneChunkConnection;
|
|
130802
130996
|
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
130803
130997
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -130845,6 +131039,7 @@ export declare enum KitsuneFeedbackEditionType {
|
|
|
130845
131039
|
}
|
|
130846
131040
|
export declare type KitsuneFeedbackEvent = {
|
|
130847
131041
|
__typename?: 'KitsuneFeedbackEvent';
|
|
131042
|
+
aupViolationCategory?: Maybe<Scalars['String']['output']>;
|
|
130848
131043
|
content: Scalars['KitsuneADF']['output'];
|
|
130849
131044
|
createdAt: Scalars['DateTime']['output'];
|
|
130850
131045
|
id: Scalars['ID']['output'];
|
|
@@ -131060,21 +131255,27 @@ export declare type KitsuneSourceCategoryEdge = KitsuneEdge & {
|
|
|
131060
131255
|
export declare enum KitsuneSourceCategoryType {
|
|
131061
131256
|
AdaCx = "ADA_CX",
|
|
131062
131257
|
Aircall = "AIRCALL",
|
|
131258
|
+
Airfocus = "AIRFOCUS",
|
|
131063
131259
|
Airtable = "AIRTABLE",
|
|
131064
131260
|
AlternativeTo = "ALTERNATIVE_TO",
|
|
131065
131261
|
Amplitude = "AMPLITUDE",
|
|
131066
131262
|
Api = "API",
|
|
131067
131263
|
AppleAppStore = "APPLE_APP_STORE",
|
|
131068
131264
|
Asana = "ASANA",
|
|
131265
|
+
Askable = "ASKABLE",
|
|
131266
|
+
AtlassianCommunity = "ATLASSIAN_COMMUNITY",
|
|
131069
131267
|
Attio = "ATTIO",
|
|
131070
131268
|
AudioFiles = "AUDIO_FILES",
|
|
131269
|
+
Bagel = "BAGEL",
|
|
131071
131270
|
BigqueryByGoogle = "BIGQUERY_BY_GOOGLE",
|
|
131072
131271
|
Bitbucket = "BITBUCKET",
|
|
131073
131272
|
Blueconic = "BLUECONIC",
|
|
131074
131273
|
Bluesky = "BLUESKY",
|
|
131274
|
+
Buildbetter = "BUILDBETTER",
|
|
131075
131275
|
Capterra = "CAPTERRA",
|
|
131076
131276
|
ChorusByZoominfo = "CHORUS_BY_ZOOMINFO",
|
|
131077
131277
|
Chrome = "CHROME",
|
|
131278
|
+
Churnzero = "CHURNZERO",
|
|
131078
131279
|
Circle = "CIRCLE",
|
|
131079
131280
|
CiscoWebex = "CISCO_WEBEX",
|
|
131080
131281
|
Claap = "CLAAP",
|
|
@@ -131087,9 +131288,11 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131087
131288
|
Customerly = "CUSTOMERLY",
|
|
131088
131289
|
Discord = "DISCORD",
|
|
131089
131290
|
Discourse = "DISCOURSE",
|
|
131291
|
+
Dovetail = "DOVETAIL",
|
|
131090
131292
|
Drift = "DRIFT",
|
|
131091
131293
|
DropboxPaper = "DROPBOX_PAPER",
|
|
131092
131294
|
Email = "EMAIL",
|
|
131295
|
+
Enterpret = "ENTERPRET",
|
|
131093
131296
|
Evernote = "EVERNOTE",
|
|
131094
131297
|
ExcelSpreadsheets = "EXCEL_SPREADSHEETS",
|
|
131095
131298
|
Facebook = "FACEBOOK",
|
|
@@ -131098,7 +131301,9 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131098
131301
|
Fillout = "FILLOUT",
|
|
131099
131302
|
Fireflies = "FIREFLIES",
|
|
131100
131303
|
Folk = "FOLK",
|
|
131304
|
+
Forelight = "FORELIGHT",
|
|
131101
131305
|
Formstack = "FORMSTACK",
|
|
131306
|
+
FourApp = "FOUR_APP",
|
|
131102
131307
|
Front = "FRONT",
|
|
131103
131308
|
G2 = "G2",
|
|
131104
131309
|
Gainsight = "GAINSIGHT",
|
|
@@ -131109,21 +131314,28 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131109
131314
|
GoogleChat = "GOOGLE_CHAT",
|
|
131110
131315
|
GoogleDocs = "GOOGLE_DOCS",
|
|
131111
131316
|
GoogleForms = "GOOGLE_FORMS",
|
|
131317
|
+
GoogleMapReview = "GOOGLE_MAP_REVIEW",
|
|
131112
131318
|
GoogleMeet = "GOOGLE_MEET",
|
|
131113
131319
|
GooglePlayStore = "GOOGLE_PLAY_STORE",
|
|
131114
131320
|
GoogleSheets = "GOOGLE_SHEETS",
|
|
131321
|
+
GoogleSlides = "GOOGLE_SLIDES",
|
|
131115
131322
|
Grain = "GRAIN",
|
|
131323
|
+
GreatQuestion = "GREAT_QUESTION",
|
|
131324
|
+
Harvestr = "HARVESTR",
|
|
131116
131325
|
HelpScout = "HELP_SCOUT",
|
|
131117
131326
|
Hubspot = "HUBSPOT",
|
|
131118
131327
|
Ifttt = "IFTTT",
|
|
131119
131328
|
ImageFiles = "IMAGE_FILES",
|
|
131329
|
+
Index = "INDEX",
|
|
131120
131330
|
Intercom = "INTERCOM",
|
|
131121
131331
|
Jira = "JIRA",
|
|
131122
131332
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
131123
131333
|
Jotform = "JOTFORM",
|
|
131124
131334
|
Kustomer = "KUSTOMER",
|
|
131125
131335
|
Linear = "LINEAR",
|
|
131336
|
+
LinearCustomerRequest = "LINEAR_CUSTOMER_REQUEST",
|
|
131126
131337
|
Linkedin = "LINKEDIN",
|
|
131338
|
+
Listenup = "LISTENUP",
|
|
131127
131339
|
LogmeinGotomeeting = "LOGMEIN_GOTOMEETING",
|
|
131128
131340
|
Loom = "LOOM",
|
|
131129
131341
|
Make = "MAKE",
|
|
@@ -131132,20 +131344,28 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131132
131344
|
Modjo = "MODJO",
|
|
131133
131345
|
Monday = "MONDAY",
|
|
131134
131346
|
N8N = "N8N",
|
|
131347
|
+
NextAi = "NEXT_AI",
|
|
131348
|
+
Nodale = "NODALE",
|
|
131135
131349
|
Notion = "NOTION",
|
|
131136
131350
|
NotionTables = "NOTION_TABLES",
|
|
131137
131351
|
Otter = "OTTER",
|
|
131138
131352
|
PdfFiles = "PDF_FILES",
|
|
131139
131353
|
Pipedrive = "PIPEDRIVE",
|
|
131140
131354
|
Planhat = "PLANHAT",
|
|
131355
|
+
Powerpoint = "POWERPOINT",
|
|
131356
|
+
Prodpad = "PRODPAD",
|
|
131357
|
+
Productboard = "PRODUCTBOARD",
|
|
131141
131358
|
Pylon = "PYLON",
|
|
131142
131359
|
Qualtrics = "QUALTRICS",
|
|
131143
131360
|
Quip = "QUIP",
|
|
131144
131361
|
Reddit = "REDDIT",
|
|
131362
|
+
ReleasedSo = "RELEASED_SO",
|
|
131145
131363
|
Rewatch = "REWATCH",
|
|
131146
131364
|
Salesforce = "SALESFORCE",
|
|
131147
131365
|
Salesloft = "SALESLOFT",
|
|
131366
|
+
Sauce = "SAUCE",
|
|
131148
131367
|
Segment = "SEGMENT",
|
|
131368
|
+
SentimentSearch = "SENTIMENT_SEARCH",
|
|
131149
131369
|
Sharepoint = "SHAREPOINT",
|
|
131150
131370
|
Shortcut = "SHORTCUT",
|
|
131151
131371
|
Slack = "SLACK",
|
|
@@ -131154,6 +131374,7 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131154
131374
|
Smartsheet = "SMARTSHEET",
|
|
131155
131375
|
Snowflake = "SNOWFLAKE",
|
|
131156
131376
|
SoftwareAdvice = "SOFTWARE_ADVICE",
|
|
131377
|
+
StaircaseAi = "STAIRCASE_AI",
|
|
131157
131378
|
Surveymonkey = "SURVEYMONKEY",
|
|
131158
131379
|
Surveyplanet = "SURVEYPLANET",
|
|
131159
131380
|
Surveysparrow = "SURVEYSPARROW",
|
|
@@ -131170,13 +131391,18 @@ export declare enum KitsuneSourceCategoryType {
|
|
|
131170
131391
|
Twist = "TWIST",
|
|
131171
131392
|
TwitterX = "TWITTER_X",
|
|
131172
131393
|
Typeform = "TYPEFORM",
|
|
131394
|
+
Unwrap = "UNWRAP",
|
|
131395
|
+
Userfeed = "USERFEED",
|
|
131396
|
+
Usersnap = "USERSNAP",
|
|
131173
131397
|
VideoFiles = "VIDEO_FILES",
|
|
131174
131398
|
Vidyard = "VIDYARD",
|
|
131175
131399
|
Vitally = "VITALLY",
|
|
131400
|
+
Vivun = "VIVUN",
|
|
131176
131401
|
Word = "WORD",
|
|
131177
131402
|
WorkplaceByMeta = "WORKPLACE_BY_META",
|
|
131178
131403
|
Wufoo = "WUFOO",
|
|
131179
131404
|
Zapier = "ZAPIER",
|
|
131405
|
+
Zelta = "ZELTA",
|
|
131180
131406
|
Zendesk = "ZENDESK",
|
|
131181
131407
|
Zoho = "ZOHO",
|
|
131182
131408
|
Zoom = "ZOOM",
|
|
@@ -137218,6 +137444,56 @@ export declare type MediaFile = {
|
|
|
137218
137444
|
name: Scalars['String']['input'];
|
|
137219
137445
|
size: Scalars['Int']['input'];
|
|
137220
137446
|
};
|
|
137447
|
+
export declare type MediaFileAbuseClassification = {
|
|
137448
|
+
__typename?: 'MediaFileAbuseClassification';
|
|
137449
|
+
classification?: Maybe<Scalars['String']['output']>;
|
|
137450
|
+
confidence?: Maybe<Scalars['String']['output']>;
|
|
137451
|
+
};
|
|
137452
|
+
export declare type MediaFileDetails = {
|
|
137453
|
+
__typename?: 'MediaFileDetails';
|
|
137454
|
+
abuseClassification?: Maybe<MediaFileAbuseClassification>;
|
|
137455
|
+
artifacts?: Maybe<Scalars['JSONObject']['output']>;
|
|
137456
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
137457
|
+
failReason?: Maybe<Scalars['String']['output']>;
|
|
137458
|
+
mediaMetadata?: Maybe<MediaFileMetadata>;
|
|
137459
|
+
mediaType?: Maybe<Scalars['String']['output']>;
|
|
137460
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
137461
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
137462
|
+
preview?: Maybe<MediaFilePreview>;
|
|
137463
|
+
processingStatus?: Maybe<Scalars['String']['output']>;
|
|
137464
|
+
representations?: Maybe<MediaFileRepresentations>;
|
|
137465
|
+
size?: Maybe<Scalars['Long']['output']>;
|
|
137466
|
+
};
|
|
137467
|
+
export declare type MediaFileDetailsArtifactsArgs = {
|
|
137468
|
+
types?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
137469
|
+
};
|
|
137470
|
+
export declare type MediaFileMetadata = {
|
|
137471
|
+
__typename?: 'MediaFileMetadata';
|
|
137472
|
+
duration?: Maybe<Scalars['Float']['output']>;
|
|
137473
|
+
};
|
|
137474
|
+
export declare type MediaFilePreview = {
|
|
137475
|
+
__typename?: 'MediaFilePreview';
|
|
137476
|
+
cdnUrl?: Maybe<Scalars['String']['output']>;
|
|
137477
|
+
};
|
|
137478
|
+
export declare type MediaFileRepresentations = {
|
|
137479
|
+
__typename?: 'MediaFileRepresentations';
|
|
137480
|
+
image?: Maybe<MediaImageRepresentation>;
|
|
137481
|
+
};
|
|
137482
|
+
export declare type MediaImageRepresentation = {
|
|
137483
|
+
__typename?: 'MediaImageRepresentation';
|
|
137484
|
+
_empty?: Maybe<Scalars['Boolean']['output']>;
|
|
137485
|
+
};
|
|
137486
|
+
export declare type MediaItem = {
|
|
137487
|
+
__typename?: 'MediaItem';
|
|
137488
|
+
details: MediaFileDetails;
|
|
137489
|
+
id: Scalars['ID']['output'];
|
|
137490
|
+
type: Scalars['String']['output'];
|
|
137491
|
+
};
|
|
137492
|
+
export declare type MediaItemDescriptorInput = {
|
|
137493
|
+
collection?: InputMaybe<Scalars['String']['input']>;
|
|
137494
|
+
fileId: Scalars['ID']['input'];
|
|
137495
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
137496
|
+
};
|
|
137221
137497
|
export declare type MediaPickerUserToken = {
|
|
137222
137498
|
__typename?: 'MediaPickerUserToken';
|
|
137223
137499
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -138112,6 +138388,17 @@ export declare type MercuryCreateRiskInput = {
|
|
|
138112
138388
|
submitter?: InputMaybe<Scalars['ID']['input']>;
|
|
138113
138389
|
targetDate?: InputMaybe<MercuryRiskTargetDateInput>;
|
|
138114
138390
|
};
|
|
138391
|
+
export declare type MercuryCreateRiskLinkInput = {
|
|
138392
|
+
riskId: Scalars['ID']['input'];
|
|
138393
|
+
text: Scalars['String']['input'];
|
|
138394
|
+
url: Scalars['String']['input'];
|
|
138395
|
+
};
|
|
138396
|
+
export declare type MercuryCreateRiskLinkPayload = Payload & {
|
|
138397
|
+
__typename?: 'MercuryCreateRiskLinkPayload';
|
|
138398
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138399
|
+
riskLink?: Maybe<MercuryRiskLink>;
|
|
138400
|
+
success: Scalars['Boolean']['output'];
|
|
138401
|
+
};
|
|
138115
138402
|
export declare type MercuryCreateRiskPayload = Payload & {
|
|
138116
138403
|
__typename?: 'MercuryCreateRiskPayload';
|
|
138117
138404
|
createdRisk?: Maybe<MercuryRisk>;
|
|
@@ -138489,6 +138776,15 @@ export declare type MercuryDeletePreferencePayload = Payload & {
|
|
|
138489
138776
|
export declare type MercuryDeleteRiskInput = {
|
|
138490
138777
|
id: Scalars['ID']['input'];
|
|
138491
138778
|
};
|
|
138779
|
+
export declare type MercuryDeleteRiskLinkInput = {
|
|
138780
|
+
cloudId: Scalars['ID']['input'];
|
|
138781
|
+
id: Scalars['ID']['input'];
|
|
138782
|
+
};
|
|
138783
|
+
export declare type MercuryDeleteRiskLinkPayload = Payload & {
|
|
138784
|
+
__typename?: 'MercuryDeleteRiskLinkPayload';
|
|
138785
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138786
|
+
success: Scalars['Boolean']['output'];
|
|
138787
|
+
};
|
|
138492
138788
|
export declare type MercuryDeleteRiskPayload = Payload & {
|
|
138493
138789
|
__typename?: 'MercuryDeleteRiskPayload';
|
|
138494
138790
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -139231,7 +139527,9 @@ export declare type MercuryFundsMutationApi = {
|
|
|
139231
139527
|
deleteFocusAreaBudget?: Maybe<MercuryDeleteFocusAreaBudgetPayload>;
|
|
139232
139528
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
139233
139529
|
setBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
139530
|
+
setCostBaseline?: Maybe<MercurySetBaselinePayload>;
|
|
139234
139531
|
unsetBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
139532
|
+
unsetCostBaseline?: Maybe<MercuryUnsetBaselinePayload>;
|
|
139235
139533
|
updateActiveCurrency?: Maybe<MercuryUpdateActiveCurrencyPayload>;
|
|
139236
139534
|
updateBenefitItemBenefitType?: Maybe<MercuryUpdateBenefitItemBenefitTypePayload>;
|
|
139237
139535
|
updateBenefitPeriodValueAmount?: Maybe<MercuryUpdateBenefitPeriodValueAmountPayload>;
|
|
@@ -139299,9 +139597,15 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
139299
139597
|
export declare type MercuryFundsMutationApiSetBaselineArgs = {
|
|
139300
139598
|
input: MercurySetBaselineInput;
|
|
139301
139599
|
};
|
|
139600
|
+
export declare type MercuryFundsMutationApiSetCostBaselineArgs = {
|
|
139601
|
+
input: MercurySetBaselineInput;
|
|
139602
|
+
};
|
|
139302
139603
|
export declare type MercuryFundsMutationApiUnsetBaselineArgs = {
|
|
139303
139604
|
input: MercuryUnsetBaselineInput;
|
|
139304
139605
|
};
|
|
139606
|
+
export declare type MercuryFundsMutationApiUnsetCostBaselineArgs = {
|
|
139607
|
+
input: MercuryUnsetBaselineInput;
|
|
139608
|
+
};
|
|
139305
139609
|
export declare type MercuryFundsMutationApiUpdateActiveCurrencyArgs = {
|
|
139306
139610
|
input: MercuryUpdateActiveCurrencyInput;
|
|
139307
139611
|
};
|
|
@@ -141113,6 +141417,7 @@ export declare type MercuryRisk = Node & {
|
|
|
141113
141417
|
linkedFocusAreas?: Maybe<Array<MercuryFocusArea>>;
|
|
141114
141418
|
name: Scalars['String']['output'];
|
|
141115
141419
|
owner?: Maybe<User>;
|
|
141420
|
+
riskLinks?: Maybe<Array<MercuryRiskLink>>;
|
|
141116
141421
|
status?: Maybe<MercuryRiskStatus>;
|
|
141117
141422
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
141118
141423
|
submitter?: Maybe<User>;
|
|
@@ -141140,6 +141445,17 @@ export declare type MercuryRiskLikelihood = {
|
|
|
141140
141445
|
key: Scalars['String']['output'];
|
|
141141
141446
|
value: Scalars['Int']['output'];
|
|
141142
141447
|
};
|
|
141448
|
+
export declare type MercuryRiskLink = {
|
|
141449
|
+
__typename?: 'MercuryRiskLink';
|
|
141450
|
+
createdBy?: Maybe<User>;
|
|
141451
|
+
createdDate: Scalars['String']['output'];
|
|
141452
|
+
id: Scalars['ID']['output'];
|
|
141453
|
+
riskId: Scalars['ID']['output'];
|
|
141454
|
+
text: Scalars['String']['output'];
|
|
141455
|
+
updatedBy?: Maybe<User>;
|
|
141456
|
+
updatedDate: Scalars['String']['output'];
|
|
141457
|
+
url: Scalars['String']['output'];
|
|
141458
|
+
};
|
|
141143
141459
|
export declare type MercuryRiskSort = {
|
|
141144
141460
|
field: MercuryRiskSortField;
|
|
141145
141461
|
order: SortOrder;
|
|
@@ -141192,7 +141508,9 @@ export declare enum MercuryRiskTargetDateType {
|
|
|
141192
141508
|
export declare type MercuryRisksMutationApi = {
|
|
141193
141509
|
__typename?: 'MercuryRisksMutationApi';
|
|
141194
141510
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
141511
|
+
createRiskLink?: Maybe<MercuryCreateRiskLinkPayload>;
|
|
141195
141512
|
deleteRisk?: Maybe<MercuryDeleteRiskPayload>;
|
|
141513
|
+
deleteRiskLink?: Maybe<MercuryDeleteRiskLinkPayload>;
|
|
141196
141514
|
linkRiskToFocusAreas?: Maybe<MercuryLinkRiskToFocusAreasPayload>;
|
|
141197
141515
|
transitionRiskStatus?: Maybe<MercuryTransitionRiskPayload>;
|
|
141198
141516
|
unlinkRiskFromFocusAreas?: Maybe<MercuryUnlinkRiskFromFocusAreasPayload>;
|
|
@@ -141208,9 +141526,15 @@ export declare type MercuryRisksMutationApi = {
|
|
|
141208
141526
|
export declare type MercuryRisksMutationApiCreateRiskArgs = {
|
|
141209
141527
|
input: MercuryCreateRiskInput;
|
|
141210
141528
|
};
|
|
141529
|
+
export declare type MercuryRisksMutationApiCreateRiskLinkArgs = {
|
|
141530
|
+
input: MercuryCreateRiskLinkInput;
|
|
141531
|
+
};
|
|
141211
141532
|
export declare type MercuryRisksMutationApiDeleteRiskArgs = {
|
|
141212
141533
|
input: MercuryDeleteRiskInput;
|
|
141213
141534
|
};
|
|
141535
|
+
export declare type MercuryRisksMutationApiDeleteRiskLinkArgs = {
|
|
141536
|
+
input: MercuryDeleteRiskLinkInput;
|
|
141537
|
+
};
|
|
141214
141538
|
export declare type MercuryRisksMutationApiLinkRiskToFocusAreasArgs = {
|
|
141215
141539
|
input: MercuryLinkRiskToFocusAreasInput;
|
|
141216
141540
|
};
|
|
@@ -141964,7 +142288,6 @@ export declare type MercuryUnrankChangeProposalInViewPayload = Payload & {
|
|
|
141964
142288
|
};
|
|
141965
142289
|
export declare type MercuryUnsetBaselineInput = {
|
|
141966
142290
|
endYearMonth: Scalars['String']['input'];
|
|
141967
|
-
financialVersionId: Scalars['ID']['input'];
|
|
141968
142291
|
focusAreaId: Scalars['ID']['input'];
|
|
141969
142292
|
startYearMonth: Scalars['String']['input'];
|
|
141970
142293
|
};
|
|
@@ -143512,6 +143835,7 @@ export declare type Mutation = {
|
|
|
143512
143835
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
143513
143836
|
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
143514
143837
|
jpdViewsService_updateGlobalViewV2?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
143838
|
+
jpdViewsService_updateGlobalViewV3?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
143515
143839
|
jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
|
|
143516
143840
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
143517
143841
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
@@ -146669,6 +146993,9 @@ export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
|
|
|
146669
146993
|
export declare type MutationJpdViewsService_UpdateGlobalViewV2Args = {
|
|
146670
146994
|
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
146671
146995
|
};
|
|
146996
|
+
export declare type MutationJpdViewsService_UpdateGlobalViewV3Args = {
|
|
146997
|
+
input: JpdViewsServiceUpdateGlobalViewInput2;
|
|
146998
|
+
};
|
|
146672
146999
|
export declare type MutationJsmChannels_EstablishConnectionArgs = {
|
|
146673
147000
|
input: JsmChannelsEstablishConnectionInput;
|
|
146674
147001
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -149827,10 +150154,12 @@ export declare enum PlaybookTemplateIcon {
|
|
|
149827
150154
|
ChangeManagement_4Icon = "CHANGE_MANAGEMENT_4_ICON",
|
|
149828
150155
|
Chat_5Icon = "CHAT_5_ICON",
|
|
149829
150156
|
DataPrivacyIcon = "DATA_PRIVACY_ICON",
|
|
150157
|
+
ErrorColorIcon = "ERROR_COLOR_ICON",
|
|
149830
150158
|
HourglassIcon = "HOURGLASS_ICON",
|
|
149831
150159
|
OnboardingIcon = "ONBOARDING_ICON",
|
|
149832
150160
|
RainstormIncidentIcon = "RAINSTORM_INCIDENT_ICON",
|
|
149833
|
-
RefreshUpdateIcon = "REFRESH_UPDATE_ICON"
|
|
150161
|
+
RefreshUpdateIcon = "REFRESH_UPDATE_ICON",
|
|
150162
|
+
StopwatchIcon = "STOPWATCH_ICON"
|
|
149834
150163
|
}
|
|
149835
150164
|
export declare type PokemonEntity = {
|
|
149836
150165
|
__typename?: 'PokemonEntity';
|
|
@@ -150311,6 +150640,7 @@ export declare type PolarisView = {
|
|
|
150311
150640
|
fieldRollups?: Maybe<Array<PolarisViewFieldRollup>>;
|
|
150312
150641
|
fields: Array<PolarisIdeaField>;
|
|
150313
150642
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
150643
|
+
global: Scalars['Boolean']['output'];
|
|
150314
150644
|
groupBy?: Maybe<PolarisIdeaField>;
|
|
150315
150645
|
groupValues?: Maybe<Array<PolarisGroupValue>>;
|
|
150316
150646
|
groupsFilter?: Maybe<Array<PolarisViewFilter>>;
|
|
@@ -150532,7 +150862,12 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
150532
150862
|
Explicit = "explicit",
|
|
150533
150863
|
Implicit = "implicit"
|
|
150534
150864
|
}
|
|
150535
|
-
export declare type PostOfficeMessageData = PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
150865
|
+
export declare type PostOfficeMessageData = PostOfficeMessageJiraBoardCatchUpRovoNudgeData | PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
150866
|
+
export declare type PostOfficeMessageJiraBoardCatchUpRovoNudgeData = {
|
|
150867
|
+
__typename?: 'PostOfficeMessageJiraBoardCatchUpRovoNudgeData';
|
|
150868
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
150869
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
150870
|
+
};
|
|
150536
150871
|
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
150537
150872
|
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
150538
150873
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -150577,11 +150912,6 @@ export declare type PostOfficeSubscriptionMatchersInput = {
|
|
|
150577
150912
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
150578
150913
|
workspaceAri?: InputMaybe<Scalars['String']['input']>;
|
|
150579
150914
|
};
|
|
150580
|
-
export declare type PreferredIndexInputType = {
|
|
150581
|
-
allowSelectAllAsFallback?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150582
|
-
gqlSchemaName?: InputMaybe<Scalars['String']['input']>;
|
|
150583
|
-
indexName?: InputMaybe<Scalars['String']['input']>;
|
|
150584
|
-
};
|
|
150585
150915
|
export declare type PremiumExtensionsFeature = {
|
|
150586
150916
|
__typename?: 'PremiumExtensionsFeature';
|
|
150587
150917
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -151183,6 +151513,7 @@ export declare type Query = {
|
|
|
151183
151513
|
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
151184
151514
|
assetsVertical_attributesByTypes?: Maybe<AssetsVerticalAttributesResult>;
|
|
151185
151515
|
assetsVertical_bundle: AssetsVerticalBundleResult;
|
|
151516
|
+
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
151186
151517
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
151187
151518
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
151188
151519
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
@@ -151478,6 +151809,7 @@ export declare type Query = {
|
|
|
151478
151809
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
151479
151810
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
151480
151811
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
151812
|
+
contextService?: Maybe<SmartsContextServiceQueryApi>;
|
|
151481
151813
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151482
151814
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
151483
151815
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -151668,6 +152000,7 @@ export declare type Query = {
|
|
|
151668
152000
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
151669
152001
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
151670
152002
|
graphIntegration_skill?: Maybe<GraphIntegrationSkill>;
|
|
152003
|
+
graphIntegration_skillItems?: Maybe<Array<Maybe<GraphIntegrationSkillItem>>>;
|
|
151671
152004
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
151672
152005
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
151673
152006
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
@@ -151881,6 +152214,7 @@ export declare type Query = {
|
|
|
151881
152214
|
marketplaceStore: MarketplaceStoreQueryApi;
|
|
151882
152215
|
me: AuthenticationContext;
|
|
151883
152216
|
mediaConfiguration?: Maybe<MediaConfiguration>;
|
|
152217
|
+
media_items?: Maybe<Array<MediaItem>>;
|
|
151884
152218
|
mercury?: Maybe<MercuryQueryApi>;
|
|
151885
152219
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
151886
152220
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
@@ -152143,6 +152477,8 @@ export declare type Query = {
|
|
|
152143
152477
|
stakeholderComms_testAPIStandardPlusOnly?: Maybe<Scalars['String']['output']>;
|
|
152144
152478
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
152145
152479
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
152480
|
+
statusUpdates_byTeam?: Maybe<TownsquareUpdateConnection>;
|
|
152481
|
+
statusUpdates_forSavedView?: Maybe<TownsquareUpdateConnection>;
|
|
152146
152482
|
studio_solutionPlan?: Maybe<StudioSolutionPlan>;
|
|
152147
152483
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
152148
152484
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -152783,8 +153119,7 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
152783
153119
|
projectKey: Scalars['String']['input'];
|
|
152784
153120
|
};
|
|
152785
153121
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
152786
|
-
|
|
152787
|
-
projectKey: Scalars['String']['input'];
|
|
153122
|
+
projectAri: Scalars['ID']['input'];
|
|
152788
153123
|
};
|
|
152789
153124
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
152790
153125
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
@@ -153370,6 +153705,10 @@ export declare type QueryAssetsVertical_BundleArgs = {
|
|
|
153370
153705
|
cloudId: Scalars['ID']['input'];
|
|
153371
153706
|
type: AssetsVerticalBundleType;
|
|
153372
153707
|
};
|
|
153708
|
+
export declare type QueryAssetsVertical_ConfiguredObjectTypesArgs = {
|
|
153709
|
+
cloudId: Scalars['ID']['input'];
|
|
153710
|
+
input: AssetsVerticalObjectTypesInput;
|
|
153711
|
+
};
|
|
153373
153712
|
export declare type QueryAssetsVertical_CountByStatusArgs = {
|
|
153374
153713
|
cloudId: Scalars['ID']['input'];
|
|
153375
153714
|
input: AssetsVerticalCountByStatusInput;
|
|
@@ -155480,6 +155819,10 @@ export declare type QueryGraphIntegration_SkillArgs = {
|
|
|
155480
155819
|
contextAri: Scalars['ID']['input'];
|
|
155481
155820
|
skillAri: Scalars['ID']['input'];
|
|
155482
155821
|
};
|
|
155822
|
+
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
155823
|
+
contextAri: Scalars['ID']['input'];
|
|
155824
|
+
skillAris: Array<Scalars['ID']['input']>;
|
|
155825
|
+
};
|
|
155483
155826
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
155484
155827
|
contextAri: Scalars['ID']['input'];
|
|
155485
155828
|
id: Scalars['String']['input'];
|
|
@@ -156230,6 +156573,13 @@ export declare type QueryMarketplacePricingPlanArgs = {
|
|
|
156230
156573
|
hostingType: AtlassianProductHostingType;
|
|
156231
156574
|
pricingPlanOptions?: InputMaybe<MarketplacePricingPlanOptions>;
|
|
156232
156575
|
};
|
|
156576
|
+
export declare type QueryMedia_ItemsArgs = {
|
|
156577
|
+
clientId: Scalars['String']['input'];
|
|
156578
|
+
cloudId: Scalars['String']['input'];
|
|
156579
|
+
descriptors: Array<MediaItemDescriptorInput>;
|
|
156580
|
+
includeHashForDuplicateFiles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156581
|
+
token: Scalars['String']['input'];
|
|
156582
|
+
};
|
|
156233
156583
|
export declare type QueryMyMarketplaceAppsArgs = {
|
|
156234
156584
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
156235
156585
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -156452,6 +156802,7 @@ export declare type QueryPopularFeedArgs = {
|
|
|
156452
156802
|
timeGranularity?: InputMaybe<Scalars['String']['input']>;
|
|
156453
156803
|
};
|
|
156454
156804
|
export declare type QueryPostOffice_GetMessagesArgs = {
|
|
156805
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
156455
156806
|
payload: PostOfficeGetMessagesInput;
|
|
156456
156807
|
};
|
|
156457
156808
|
export declare type QueryPricingArgs = {
|
|
@@ -157264,6 +157615,20 @@ export declare type QueryStalePagesArgs = {
|
|
|
157264
157615
|
sort?: InputMaybe<StalePagesSortingType>;
|
|
157265
157616
|
spaceId: Scalars['ID']['input'];
|
|
157266
157617
|
};
|
|
157618
|
+
export declare type QueryStatusUpdates_ByTeamArgs = {
|
|
157619
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
157620
|
+
containerId: Scalars['ID']['input'];
|
|
157621
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
157622
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
157623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157624
|
+
teamId: Scalars['ID']['input'];
|
|
157625
|
+
};
|
|
157626
|
+
export declare type QueryStatusUpdates_ForSavedViewArgs = {
|
|
157627
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
157628
|
+
containerId: Scalars['ID']['input'];
|
|
157629
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157630
|
+
viewUuid: Scalars['UUID']['input'];
|
|
157631
|
+
};
|
|
157267
157632
|
export declare type QueryStudio_SolutionPlanArgs = {
|
|
157268
157633
|
solutionId: Scalars['String']['input'];
|
|
157269
157634
|
solutionVersion: Scalars['Int']['input'];
|
|
@@ -159862,12 +160227,14 @@ export declare enum Scope {
|
|
|
159862
160227
|
ProjectWrite = "PROJECT_WRITE",
|
|
159863
160228
|
PullRequest = "PULL_REQUEST",
|
|
159864
160229
|
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
160230
|
+
Read_3PDataTwgCli = "READ_3P_DATA_TWG_CLI",
|
|
159865
160231
|
ReadAccount = "READ_ACCOUNT",
|
|
159866
160232
|
ReadAppDetails = "READ_APP_DETAILS",
|
|
159867
160233
|
ReadAppEnvironment = "READ_APP_ENVIRONMENT",
|
|
159868
160234
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
159869
160235
|
ReadAppLogs = "READ_APP_LOGS",
|
|
159870
160236
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
160237
|
+
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
159871
160238
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
159872
160239
|
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
159873
160240
|
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
@@ -159913,6 +160280,7 @@ export declare enum Scope {
|
|
|
159913
160280
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
159914
160281
|
ReadJiraUser = "READ_JIRA_USER",
|
|
159915
160282
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
160283
|
+
ReadJsmTwgCli = "READ_JSM_TWG_CLI",
|
|
159916
160284
|
ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
|
|
159917
160285
|
ReadJswBoardScopeAdmin = "READ_JSW_BOARD_SCOPE_ADMIN",
|
|
159918
160286
|
ReadJswBuild = "READ_JSW_BUILD",
|
|
@@ -159923,9 +160291,11 @@ export declare enum Scope {
|
|
|
159923
160291
|
ReadJswRemoteLink = "READ_JSW_REMOTE_LINK",
|
|
159924
160292
|
ReadJswSourceCode = "READ_JSW_SOURCE_CODE",
|
|
159925
160293
|
ReadJswSprint = "READ_JSW_SPRINT",
|
|
160294
|
+
ReadJswTwgCli = "READ_JSW_TWG_CLI",
|
|
159926
160295
|
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
160296
|
+
ReadLoomTwgCli = "READ_LOOM_TWG_CLI",
|
|
159927
160297
|
ReadMe = "READ_ME",
|
|
159928
|
-
|
|
160298
|
+
ReadMercuryTwgCli = "READ_MERCURY_TWG_CLI",
|
|
159929
160299
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
159930
160300
|
ReadOrganization = "READ_ORGANIZATION",
|
|
159931
160301
|
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
@@ -159948,8 +160318,6 @@ export declare enum Scope {
|
|
|
159948
160318
|
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
159949
160319
|
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
159950
160320
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
159951
|
-
ReadSettingsLoom = "READ_SETTINGS_LOOM",
|
|
159952
|
-
ReadSpaceLoom = "READ_SPACE_LOOM",
|
|
159953
160321
|
ReadStakeholderCommsAssignment = "READ_STAKEHOLDER_COMMS_ASSIGNMENT",
|
|
159954
160322
|
ReadStakeholderCommsComponent = "READ_STAKEHOLDER_COMMS_COMPONENT",
|
|
159955
160323
|
ReadStakeholderCommsIncident = "READ_STAKEHOLDER_COMMS_INCIDENT",
|
|
@@ -159957,6 +160325,7 @@ export declare enum Scope {
|
|
|
159957
160325
|
ReadStakeholderCommsStakeholder = "READ_STAKEHOLDER_COMMS_STAKEHOLDER",
|
|
159958
160326
|
ReadStakeholderCommsSubscriber = "READ_STAKEHOLDER_COMMS_SUBSCRIBER",
|
|
159959
160327
|
ReadTeam = "READ_TEAM",
|
|
160328
|
+
ReadTeamworkGraphTwgCli = "READ_TEAMWORK_GRAPH_TWG_CLI",
|
|
159960
160329
|
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
159961
160330
|
ReadTeamMembersTemp = "READ_TEAM_MEMBERS_TEMP",
|
|
159962
160331
|
ReadTeamTemp = "READ_TEAM_TEMP",
|
|
@@ -159964,7 +160333,7 @@ export declare enum Scope {
|
|
|
159964
160333
|
ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
|
|
159965
160334
|
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
159966
160335
|
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
159967
|
-
|
|
160336
|
+
ReadTrelloTwgCli = "READ_TRELLO_TWG_CLI",
|
|
159968
160337
|
ReadViewJpd = "READ_VIEW_JPD",
|
|
159969
160338
|
ResolutionRead = "RESOLUTION_READ",
|
|
159970
160339
|
RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
|
|
@@ -160006,6 +160375,7 @@ export declare enum Scope {
|
|
|
160006
160375
|
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
160007
160376
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
160008
160377
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
160378
|
+
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
160009
160379
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
160010
160380
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
160011
160381
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
@@ -160041,6 +160411,7 @@ export declare enum Scope {
|
|
|
160041
160411
|
WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
|
|
160042
160412
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
160043
160413
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
160414
|
+
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
160044
160415
|
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
160045
160416
|
WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
|
|
160046
160417
|
WriteJswBuild = "WRITE_JSW_BUILD",
|
|
@@ -160051,7 +160422,9 @@ export declare enum Scope {
|
|
|
160051
160422
|
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
160052
160423
|
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
160053
160424
|
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
160054
|
-
|
|
160425
|
+
WriteJswTwgCli = "WRITE_JSW_TWG_CLI",
|
|
160426
|
+
WriteLoomTwgCli = "WRITE_LOOM_TWG_CLI",
|
|
160427
|
+
WriteMercuryTwgCli = "WRITE_MERCURY_TWG_CLI",
|
|
160055
160428
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
160056
160429
|
WriteOrganization = "WRITE_ORGANIZATION",
|
|
160057
160430
|
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
@@ -160071,8 +160444,6 @@ export declare enum Scope {
|
|
|
160071
160444
|
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
160072
160445
|
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
160073
160446
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
160074
|
-
WriteSettingsLoom = "WRITE_SETTINGS_LOOM",
|
|
160075
|
-
WriteSpaceLoom = "WRITE_SPACE_LOOM",
|
|
160076
160447
|
WriteStakeholderCommsComponent = "WRITE_STAKEHOLDER_COMMS_COMPONENT",
|
|
160077
160448
|
WriteStakeholderCommsIncident = "WRITE_STAKEHOLDER_COMMS_INCIDENT",
|
|
160078
160449
|
WriteStakeholderCommsPage = "WRITE_STAKEHOLDER_COMMS_PAGE",
|
|
@@ -160084,7 +160455,7 @@ export declare enum Scope {
|
|
|
160084
160455
|
WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
|
|
160085
160456
|
WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
|
|
160086
160457
|
WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
|
|
160087
|
-
|
|
160458
|
+
WriteTrelloTwgCli = "WRITE_TRELLO_TWG_CLI",
|
|
160088
160459
|
WriteViewJpd = "WRITE_VIEW_JPD"
|
|
160089
160460
|
}
|
|
160090
160461
|
export declare type ScopeSprintIssue = {
|
|
@@ -180616,6 +180987,19 @@ export declare type SmartsContext = {
|
|
|
180616
180987
|
tenantId: Scalars['String']['input'];
|
|
180617
180988
|
userId: Scalars['String']['input'];
|
|
180618
180989
|
};
|
|
180990
|
+
export declare type SmartsContextServiceQueryApi = {
|
|
180991
|
+
__typename?: 'SmartsContextServiceQueryApi';
|
|
180992
|
+
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
180993
|
+
};
|
|
180994
|
+
export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs = {
|
|
180995
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180996
|
+
};
|
|
180997
|
+
export declare type SmartsContextServiceUserRecommendation = {
|
|
180998
|
+
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
180999
|
+
id: Scalars['ID']['output'];
|
|
181000
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
181001
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
181002
|
+
};
|
|
180619
181003
|
export declare type SmartsFieldContext = {
|
|
180620
181004
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
180621
181005
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -180636,7 +181020,6 @@ export declare type SmartsModelRequestParams = {
|
|
|
180636
181020
|
export declare type SmartsQueryApi = {
|
|
180637
181021
|
__typename?: 'SmartsQueryApi';
|
|
180638
181022
|
recommendedContainer?: Maybe<Array<Maybe<SmartsRecommendedContainer>>>;
|
|
180639
|
-
recommendedContainerV2?: Maybe<Array<Maybe<SmartsRecommendedContainerV2>>>;
|
|
180640
181023
|
recommendedField?: Maybe<Array<Maybe<SmartsRecommendedFieldObject>>>;
|
|
180641
181024
|
recommendedObject?: Maybe<Array<Maybe<SmartsRecommendedObject>>>;
|
|
180642
181025
|
recommendedUser?: Maybe<Array<Maybe<SmartsRecommendedUser>>>;
|
|
@@ -180644,9 +181027,6 @@ export declare type SmartsQueryApi = {
|
|
|
180644
181027
|
export declare type SmartsQueryApiRecommendedContainerArgs = {
|
|
180645
181028
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180646
181029
|
};
|
|
180647
|
-
export declare type SmartsQueryApiRecommendedContainerV2Args = {
|
|
180648
|
-
recommendationsQuery: SmartsRecommendationsQuery;
|
|
180649
|
-
};
|
|
180650
181030
|
export declare type SmartsQueryApiRecommendedFieldArgs = {
|
|
180651
181031
|
recommendationsQuery: SmartsRecommendationsFieldQuery;
|
|
180652
181032
|
};
|
|
@@ -180676,13 +181056,6 @@ export declare type SmartsRecommendedContainer = {
|
|
|
180676
181056
|
id: Scalars['ID']['output'];
|
|
180677
181057
|
score?: Maybe<Scalars['Float']['output']>;
|
|
180678
181058
|
};
|
|
180679
|
-
export declare type SmartsRecommendedContainerData = ConfluenceSpace | JiraProject;
|
|
180680
|
-
export declare type SmartsRecommendedContainerV2 = {
|
|
180681
|
-
__typename?: 'SmartsRecommendedContainerV2';
|
|
180682
|
-
container?: Maybe<SmartsRecommendedContainerData>;
|
|
180683
|
-
id: Scalars['ID']['output'];
|
|
180684
|
-
score?: Maybe<Scalars['Float']['output']>;
|
|
180685
|
-
};
|
|
180686
181059
|
export declare type SmartsRecommendedFieldObject = {
|
|
180687
181060
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
180688
181061
|
id: Scalars['ID']['output'];
|
|
@@ -184310,6 +184683,7 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
184310
184683
|
export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
184311
184684
|
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
184312
184685
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
184686
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
184313
184687
|
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
184314
184688
|
placementId: Scalars['String']['input'];
|
|
184315
184689
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -184318,6 +184692,7 @@ export declare type SubscriptionPostOffice_OnMessageReceivedArgs = {
|
|
|
184318
184692
|
export declare type SubscriptionPostOffice_OnMessageReceivedEnrichedArgs = {
|
|
184319
184693
|
activeScopes?: InputMaybe<Scalars['String']['input']>;
|
|
184320
184694
|
context?: InputMaybe<PostOfficeContextInput>;
|
|
184695
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
184321
184696
|
pathname?: InputMaybe<Scalars['String']['input']>;
|
|
184322
184697
|
placementId: Scalars['String']['input'];
|
|
184323
184698
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -185107,6 +185482,7 @@ export declare type TeamMutation = {
|
|
|
185107
185482
|
setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
|
|
185108
185483
|
setScopeNotificationConfiguration?: Maybe<TeamScopeNotificationConfiguration>;
|
|
185109
185484
|
unlinkCustomFieldFromOption?: Maybe<TeamCustomFieldKeyValues>;
|
|
185485
|
+
unlinkCustomFieldFromValue?: Maybe<TeamCustomFieldKeyValues>;
|
|
185110
185486
|
unlinkManagedTeams?: Maybe<TeamUnlinkManagedTeamsPayload>;
|
|
185111
185487
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
185112
185488
|
updateCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
@@ -185191,6 +185567,10 @@ export declare type TeamMutationUnlinkCustomFieldFromOptionArgs = {
|
|
|
185191
185567
|
customFieldValueId: Scalars['ID']['input'];
|
|
185192
185568
|
teamId: Scalars['ID']['input'];
|
|
185193
185569
|
};
|
|
185570
|
+
export declare type TeamMutationUnlinkCustomFieldFromValueArgs = {
|
|
185571
|
+
customFieldValueId: Scalars['ID']['input'];
|
|
185572
|
+
teamId: Scalars['ID']['input'];
|
|
185573
|
+
};
|
|
185194
185574
|
export declare type TeamMutationUnlinkManagedTeamsArgs = {
|
|
185195
185575
|
scopeId: Scalars['ID']['input'];
|
|
185196
185576
|
teamIds: Array<Scalars['ID']['input']>;
|
|
@@ -185244,6 +185624,11 @@ export declare enum TeamPermission {
|
|
|
185244
185624
|
FullWrite = "FULL_WRITE",
|
|
185245
185625
|
None = "NONE"
|
|
185246
185626
|
}
|
|
185627
|
+
export declare enum TeamPermissions {
|
|
185628
|
+
CanDeleteTeam = "CAN_DELETE_TEAM",
|
|
185629
|
+
CanManageTeam = "CAN_MANAGE_TEAM",
|
|
185630
|
+
CanViewTeam = "CAN_VIEW_TEAM"
|
|
185631
|
+
}
|
|
185247
185632
|
export declare type TeamPrincipal = {
|
|
185248
185633
|
__typename?: 'TeamPrincipal';
|
|
185249
185634
|
principalId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -185602,6 +185987,7 @@ export declare type TeamV2 = Node & {
|
|
|
185602
185987
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
185603
185988
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
185604
185989
|
permission?: Maybe<TeamPermission>;
|
|
185990
|
+
permissions?: Maybe<Array<TeamPermissions>>;
|
|
185605
185991
|
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
185606
185992
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
185607
185993
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -192603,6 +192989,7 @@ export declare type TrelloMutationApi = {
|
|
|
192603
192989
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
192604
192990
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
192605
192991
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
192992
|
+
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
192606
192993
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
192607
192994
|
sortListCards?: Maybe<TrelloSortListCardsPayload>;
|
|
192608
192995
|
submitCardBatchToBoard?: Maybe<TrelloCardBatchJobPayload>;
|
|
@@ -192795,6 +193182,9 @@ export declare type TrelloMutationApiRotateOAuth2ClientSecretArgs = {
|
|
|
192795
193182
|
export declare type TrelloMutationApiSendBoardEmailKeyMessageArgs = {
|
|
192796
193183
|
input?: InputMaybe<TrelloSendBoardEmailKeyInput>;
|
|
192797
193184
|
};
|
|
193185
|
+
export declare type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
193186
|
+
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
193187
|
+
};
|
|
192798
193188
|
export declare type TrelloMutationApiSortInboxCardsArgs = {
|
|
192799
193189
|
input: TrelloSortInboxCardsInput;
|
|
192800
193190
|
};
|
|
@@ -194087,6 +194477,16 @@ export declare type TrelloSendBoardEmailKeyMessagePayload = Payload & {
|
|
|
194087
194477
|
errors?: Maybe<Array<MutationError>>;
|
|
194088
194478
|
success: Scalars['Boolean']['output'];
|
|
194089
194479
|
};
|
|
194480
|
+
export declare type TrelloSetBoardBackgroundFromImageUrlInput = {
|
|
194481
|
+
boardId: Scalars['ID']['input'];
|
|
194482
|
+
url: Scalars['String']['input'];
|
|
194483
|
+
};
|
|
194484
|
+
export declare type TrelloSetBoardBackgroundFromImageUrlPayload = Payload & {
|
|
194485
|
+
__typename?: 'TrelloSetBoardBackgroundFromImageUrlPayload';
|
|
194486
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194487
|
+
errors?: Maybe<Array<MutationError>>;
|
|
194488
|
+
success: Scalars['Boolean']['output'];
|
|
194489
|
+
};
|
|
194090
194490
|
export declare type TrelloSmartSchedulePreference = {
|
|
194091
194491
|
__typename?: 'TrelloSmartSchedulePreference';
|
|
194092
194492
|
includeInbox: Scalars['Boolean']['output'];
|
|
@@ -194313,9 +194713,8 @@ export declare type TrelloUpdateBoardBackgroundInput = {
|
|
|
194313
194713
|
};
|
|
194314
194714
|
export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
194315
194715
|
__typename?: 'TrelloUpdateBoardBackgroundPayload';
|
|
194316
|
-
|
|
194716
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
194317
194717
|
errors?: Maybe<Array<MutationError>>;
|
|
194318
|
-
prefs?: Maybe<TrelloBoardPrefs>;
|
|
194319
194718
|
success: Scalars['Boolean']['output'];
|
|
194320
194719
|
};
|
|
194321
194720
|
export declare type TrelloUpdateBoardCommentingPermissionsInput = {
|
|
@@ -194655,8 +195054,7 @@ export declare type TrelloUpdateInboxBackgroundInput = {
|
|
|
194655
195054
|
export declare type TrelloUpdateInboxBackgroundPayload = Payload & {
|
|
194656
195055
|
__typename?: 'TrelloUpdateInboxBackgroundPayload';
|
|
194657
195056
|
errors?: Maybe<Array<MutationError>>;
|
|
194658
|
-
|
|
194659
|
-
prefs?: Maybe<TrelloInboxPrefs>;
|
|
195057
|
+
inbox?: Maybe<TrelloInbox>;
|
|
194660
195058
|
success: Scalars['Boolean']['output'];
|
|
194661
195059
|
};
|
|
194662
195060
|
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
@@ -196836,6 +197234,7 @@ export declare type UpdateInstallationDetailsResponse = {
|
|
|
196836
197234
|
export declare type UpdateJiraPlaybookInput = {
|
|
196837
197235
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
196838
197236
|
id: Scalars['ID']['input'];
|
|
197237
|
+
isAiCreated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196839
197238
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
196840
197239
|
name: Scalars['String']['input'];
|
|
196841
197240
|
scopeId?: InputMaybe<Scalars['String']['input']>;
|