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